Skip to content

Commit 316c3b0

Browse files
committed
Use mutiny-bom in independent projects
- This avoids a second dependabot PR (like #47974) when upgrading is performed
1 parent 8fd5b73 commit 316c3b0

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

independent-projects/arc/pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,10 @@
146146

147147
<dependency>
148148
<groupId>io.smallrye.reactive</groupId>
149-
<artifactId>mutiny</artifactId>
149+
<artifactId>mutiny-bom</artifactId>
150150
<version>${version.mutiny}</version>
151+
<type>pom</type>
152+
<scope>import</scope>
151153
</dependency>
152154

153155
<!-- JUnit 5 dependencies, imported as a BOM -->

independent-projects/qute/pom.xml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,14 @@
6161
<type>pom</type>
6262
<scope>import</scope>
6363
</dependency>
64+
<dependency>
65+
<groupId>io.smallrye.reactive</groupId>
66+
<artifactId>mutiny-bom</artifactId>
67+
<version>${version.smallrye-mutiny}</version>
68+
<type>pom</type>
69+
<scope>import</scope>
70+
</dependency>
71+
6472
<!-- JUnit 5 dependencies, imported as a BOM -->
6573
<dependency>
6674
<groupId>org.junit</groupId>
@@ -99,11 +107,6 @@
99107
<artifactId>gizmo</artifactId>
100108
<version>${version.gizmo}</version>
101109
</dependency>
102-
<dependency>
103-
<groupId>io.smallrye.reactive</groupId>
104-
<artifactId>mutiny</artifactId>
105-
<version>${version.smallrye-mutiny}</version>
106-
</dependency>
107110
</dependencies>
108111
</dependencyManagement>
109112

independent-projects/resteasy-reactive/pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,9 +241,12 @@
241241

242242
<dependency>
243243
<groupId>io.smallrye.reactive</groupId>
244-
<artifactId>mutiny</artifactId>
244+
<artifactId>mutiny-bom</artifactId>
245245
<version>${mutiny.version}</version>
246+
<type>pom</type>
247+
<scope>import</scope>
246248
</dependency>
249+
247250
<dependency>
248251
<groupId>io.smallrye.reactive</groupId>
249252
<artifactId>mutiny-zero-flow-adapters</artifactId>

0 commit comments

Comments
 (0)