Skip to content

Commit ca3ddb3

Browse files
chore: add junit-bom dependency
1 parent 3f513fa commit ca3ddb3

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

pom.xml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@
8989
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
9090

9191
<junit-jupiter.version>6.1.1</junit-jupiter.version>
92-
<junit-platform.version>1.14.4</junit-platform.version>
9392
<arrow.version>19.0.0</arrow.version>
9493
<!-- grpc-bom 1.79.0 is very likely incompatible with Arrow 18.3.0 -->
9594
<grpc-bom.version>1.82.1</grpc-bom.version>
@@ -127,6 +126,13 @@
127126
<type>pom</type>
128127
<scope>import</scope>
129128
</dependency>
129+
<dependency>
130+
<groupId>org.junit</groupId>
131+
<artifactId>junit-bom</artifactId>
132+
<version>6.1.1</version> <!-- or your specific 6.x version -->
133+
<type>pom</type>
134+
<scope>import</scope>
135+
</dependency>
130136
</dependencies>
131137
</dependencyManagement>
132138

@@ -300,27 +306,23 @@
300306
<dependency>
301307
<groupId>org.junit.platform</groupId>
302308
<artifactId>junit-platform-engine</artifactId>
303-
<version>${junit-platform.version}</version>
304309
</dependency>
305310

306311
<dependency>
307312
<groupId>org.junit.platform</groupId>
308313
<artifactId>junit-platform-launcher</artifactId>
309-
<version>${junit-platform.version}</version>
310314
</dependency>
311315

312316

313317
<dependency>
314318
<groupId>org.junit.jupiter</groupId>
315319
<artifactId>junit-jupiter-engine</artifactId>
316-
<version>${junit-jupiter.version}</version>
317320
<scope>test</scope>
318321
</dependency>
319322

320323
<dependency>
321324
<groupId>org.junit.jupiter</groupId>
322325
<artifactId>junit-jupiter-params</artifactId>
323-
<version>${junit-jupiter.version}</version>
324326
<scope>test</scope>
325327
</dependency>
326328

0 commit comments

Comments
 (0)