Skip to content

Commit

Permalink
Upgrade to JUnit 5.0.0 GA
Browse files Browse the repository at this point in the history
  • Loading branch information
sormuras committed Sep 10, 2017
1 parent f856dc0 commit 2b40a74
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<classpathentry excluding="module-info.java" kind="src" output="output-eclipse/modules/com.github.forax.pro.helper" path="src/test/java/com.github.forax.pro.helper"/>
<classpathentry excluding="module-info.java" kind="src" output="output-eclipse/modules/com.github.forax.pro.plugin.tester" path="plugins/tester/src/test/java/com.github.forax.pro.plugin.tester"/>
<classpathentry excluding="module-info.java" kind="src" output="output-eclipse/modules/integration.pro" path="src/test/java/integration.pro"/>

<classpathentry kind="lib" path="deps/aether.api-1.0.1.jar"/>
<classpathentry kind="lib" path="deps/aether.connector.basic-1.0.1.jar"/>
<classpathentry kind="lib" path="deps/aether.impl-1.0.1.jar"/>
Expand All @@ -36,10 +36,11 @@
<classpathentry kind="lib" path="deps/maven.aether.provider-3.3.9.jar"/>
<classpathentry kind="lib" path="deps/aether.util-1.0.1.jar"/>
<classpathentry kind="lib" path="deps/asm-debug-all-6.0_ALPHA2.jar"/>
<classpathentry kind="lib" path="deps/org.apiguardian.jar"/>
<classpathentry kind="lib" path="deps/org.json-20160810.jar"/>
<classpathentry kind="lib" path="deps/org.junit.jupiter.api.jar"/>
<classpathentry kind="lib" path="deps/org.junit.platform.commons.jar"/>
<classpathentry kind="lib" path="deps/org.opentest4j.jar"/>
<classpathentry kind="lib" path="plugins/tester/deps/org.junit.platform.commons.jar"/>
<classpathentry kind="lib" path="plugins/tester/deps/org.junit.platform.engine.jar"/>
<classpathentry kind="lib" path="plugins/tester/deps/org.junit.platform.launcher.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-9"/>
Expand Down
Binary file added deps/org.apiguardian.jar
Binary file not shown.
Binary file modified deps/org.junit.jupiter.api.jar
Binary file not shown.
Binary file modified deps/org.junit.platform.commons.jar
Binary file not shown.
Binary file modified deps/org.opentest4j.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,14 @@ public static void main(String[] args) throws IOException {
set("resolver.remoteRepositories", list(
uri("https://oss.sonatype.org/content/repositories/snapshots")
));
String junitPlatformVersion = "1.0.0-RC3";
String junitJupiterVersion = "5.0.0-RC3";
String opentest4jVersion = "1.0.0-RC1";
String junitPlatformVersion = "1.0.0";
String junitJupiterVersion = "5.0.0";
String opentest4jVersion = "1.0.0";
String apiGuardianVersion = "1.0.0";
set("resolver.dependencies", list(
// "API"
"org.opentest4j=org.opentest4j:opentest4j:" + opentest4jVersion,
"org.apiguardian=org.apiguardian:apiguardian-api:" + apiGuardianVersion,
"org.junit.platform.commons=org.junit.platform:junit-platform-commons:" + junitPlatformVersion,
"org.junit.jupiter.api=org.junit.jupiter:junit-jupiter-api:" + junitJupiterVersion,
// "Launcher + Engine"
Expand Down

0 comments on commit 2b40a74

Please sign in to comment.