Skip to content

Commit 22f4f9e

Browse files
committed
chore: upgrade and specify all JUnit transitive dependencies
This resolves the error we're seeing in our nightly GraalVM builds: TestEngine with ID 'junit-jupiter' failed to discover tests It also pulls in the latest JUnit dependencies. Fixes #585
1 parent 78049cc commit 22f4f9e

File tree

1 file changed

+23
-3
lines changed

1 file changed

+23
-3
lines changed

pom.xml

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,12 +269,32 @@
269269
<dependency>
270270
<groupId>org.junit.platform</groupId>
271271
<artifactId>junit-platform-engine</artifactId>
272-
<version>1.10.3</version>
272+
<version>1.11.2</version>
273273
</dependency>
274274
<dependency>
275275
<groupId>org.junit.platform</groupId>
276276
<artifactId>junit-platform-commons</artifactId>
277-
<version>1.10.3</version>
277+
<version>1.11.2</version>
278+
</dependency>
279+
<dependency>
280+
<groupId>org.junit.jupiter</groupId>
281+
<artifactId>junit-jupiter</artifactId>
282+
<version>5.11.2</version>
283+
</dependency>
284+
<dependency>
285+
<groupId>org.junit.jupiter</groupId>
286+
<artifactId>junit-jupiter-api</artifactId>
287+
<version>5.11.2</version>
288+
</dependency>
289+
<dependency>
290+
<groupId>org.junit.jupiter</groupId>
291+
<artifactId>junit-jupiter-params</artifactId>
292+
<version>5.11.2</version>
293+
</dependency>
294+
<dependency>
295+
<groupId>org.junit.jupiter</groupId>
296+
<artifactId>junit-jupiter-engine</artifactId>
297+
<version>5.11.2</version>
278298
</dependency>
279299
</dependencies>
280300
</dependencyManagement>
@@ -283,7 +303,7 @@
283303
<dependency>
284304
<groupId>org.junit.vintage</groupId>
285305
<artifactId>junit-vintage-engine</artifactId>
286-
<version>5.10.3</version>
306+
<version>5.11.2</version>
287307
<scope>test</scope>
288308
</dependency>
289309
<dependency>

0 commit comments

Comments
 (0)