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 committed Nov 16, 2020
1 parent 0c7bfce commit 6797224
Show file tree
Hide file tree
Showing 2 changed files with 7 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 @@ -166,8 +166,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.10.3</kubernetes-client.version>
Expand Down Expand Up @@ -4128,12 +4126,6 @@
<version>${osgi.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
7 changes: 7 additions & 0 deletions build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@

<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>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -217,6 +219,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 6797224

Please sign in to comment.