Skip to content

Commit

Permalink
chore: upgrade and specify all JUnit transitive dependencies (#593)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
enocom authored Oct 21, 2024
1 parent 4f5e375 commit 861955e
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -269,12 +269,32 @@
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-engine</artifactId>
<version>1.10.3</version>
<version>1.11.2</version>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-commons</artifactId>
<version>1.10.3</version>
<version>1.11.2</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.11.2</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.11.2</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.11.2</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.11.2</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand All @@ -283,7 +303,7 @@
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.10.3</version>
<version>5.11.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 861955e

Please sign in to comment.