Skip to content

Commit

Permalink
Move Bootstrap dependency out of the BOM
Browse files Browse the repository at this point in the history
It should never have been added there.

Fix quarkusio#12632
  • Loading branch information
gsmet authored and xumk committed Oct 14, 2020
1 parent b26b41c commit 3e44d29
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 0 additions & 8 deletions bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,6 @@
<proton-j.version>0.33.6</proton-j.version>
<okhttp.version>3.14.9</okhttp.version>
<sentry.version>1.7.30</sentry.version>
<!-- Used for integration tests, to make sure webjars work-->
<bootstrap.version>3.1.0</bootstrap.version>
<subethasmtp.version>3.1.7</subethasmtp.version>
<hibernate-quarkus-local-cache.version>0.1.0</hibernate-quarkus-local-cache.version>
<kubernetes-client.version>4.12.0</kubernetes-client.version>
Expand Down Expand Up @@ -4303,12 +4301,6 @@
<version>${snakeyaml.version}</version>
</dependency>

<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>${bootstrap.version}</version>
</dependency>

<dependency>
<groupId>org.webjars</groupId>
<artifactId>webjars-locator-core</artifactId>
Expand Down
8 changes: 8 additions & 0 deletions build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@

<boring-ssl.version>2.0.30.Final</boring-ssl.version>

<!-- Used for integration tests, to make sure webjars work-->
<bootstrap.version>3.1.0</bootstrap.version>

<!-- revapi API check -->
<revapi-maven-plugin.version>0.12.1</revapi-maven-plugin.version>
<revapi-java-plugin.version>0.22.0</revapi-java-plugin.version>
Expand Down Expand Up @@ -236,6 +239,11 @@
<scope>test</scope>
<version>${boring-ssl.version}</version>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>${bootstrap.version}</version>
</dependency>

<dependency>
<groupId>io.quarkus</groupId>
Expand Down

0 comments on commit 3e44d29

Please sign in to comment.