diff --git a/.classpath b/.classpath index 89823f5..caf5c9e 100644 --- a/.classpath +++ b/.classpath @@ -26,7 +26,7 @@ - + @@ -36,10 +36,11 @@ + + - diff --git a/deps/org.apiguardian.jar b/deps/org.apiguardian.jar new file mode 100644 index 0000000..4c7019d Binary files /dev/null and b/deps/org.apiguardian.jar differ diff --git a/deps/org.junit.jupiter.api.jar b/deps/org.junit.jupiter.api.jar index 79960a0..469596f 100644 Binary files a/deps/org.junit.jupiter.api.jar and b/deps/org.junit.jupiter.api.jar differ diff --git a/deps/org.junit.platform.commons.jar b/deps/org.junit.platform.commons.jar index 7e9db69..e4d37e6 100644 Binary files a/deps/org.junit.platform.commons.jar and b/deps/org.junit.platform.commons.jar differ diff --git a/deps/org.opentest4j.jar b/deps/org.opentest4j.jar index 30390a8..22fcc0d 100644 Binary files a/deps/org.opentest4j.jar and b/deps/org.opentest4j.jar differ diff --git a/src/main/java/com.github.forax.pro.bootstrap/com/github/forax/pro/bootstrap/Bootstrap.java b/src/main/java/com.github.forax.pro.bootstrap/com/github/forax/pro/bootstrap/Bootstrap.java index 9f0fecd..7c7e65e 100644 --- a/src/main/java/com.github.forax.pro.bootstrap/com/github/forax/pro/bootstrap/Bootstrap.java +++ b/src/main/java/com.github.forax.pro.bootstrap/com/github/forax/pro/bootstrap/Bootstrap.java @@ -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"