Skip to content

Commit

Permalink
Merge pull request #1630 from smallrye/fix/bom-add-core-deps
Browse files Browse the repository at this point in the history
fix: specify core dependency versions in the BOM
  • Loading branch information
cescoffier authored Jun 23, 2024
2 parents e2f37f5 + 9a6bcdb commit b71ef10
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,23 @@

<dependencyManagement>
<dependencies>

<dependency>
<groupId>io.smallrye.reactive</groupId>
<artifactId>mutiny</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jctools</groupId>
<artifactId>jctools-core</artifactId>
<version>${jctools-core.version}</version>
</dependency>
<dependency>
<groupId>io.smallrye.common</groupId>
<artifactId>smallrye-common-annotation</artifactId>
<version>${smallrye-common-annotation.version}</version>
</dependency>

<dependency>
<groupId>io.smallrye.reactive</groupId>
<artifactId>mutiny-smallrye-context-propagation</artifactId>
Expand Down Expand Up @@ -113,6 +125,9 @@
</distributionManagement>

<properties>
<jctools-core.version>4.0.5</jctools-core.version>
<smallrye-common-annotation.version>2.4.0</smallrye-common-annotation.version>

<version.gpg.plugin>3.2.4</version.gpg.plugin>
<version.nexus.staging.plugin>1.7.0</version.nexus.staging.plugin>
<version.release.plugin>3.1.0</version.release.plugin>
Expand Down

0 comments on commit b71ef10

Please sign in to comment.