Skip to content

Commit

Permalink
chore: fix GraalVM nightly build (#576)
Browse files Browse the repository at this point in the history
Restore older versions of JUnit platform components.

Tested by:

docker run -it -v $PWD:/code --rm ghcr.io/graalvm/graalvm-community:22 bash

And then running tests.

Fixes #574
  • Loading branch information
enocom authored Aug 26, 2024
1 parent ab2c4fa commit b71ff41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -269,12 +269,12 @@
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-engine</artifactId>
<version>1.11.0</version>
<version>1.10.3</version>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-commons</artifactId>
<version>1.11.0</version>
<version>1.10.3</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand All @@ -283,7 +283,7 @@
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.11.0</version>
<version>5.10.3</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit b71ff41

Please sign in to comment.