@@ -9,7 +9,7 @@ A Gradle plugin that allows for the execution of [JUnit 5][junit5gh] unit tests
99``` groovy
1010buildscript {
1111 dependencies {
12- classpath "de.mannodermaus.gradle.plugins:android-junit5:1.0.0-RC3-rev1 "
12+ classpath "de.mannodermaus.gradle.plugins:android-junit5:1.0.0"
1313 }
1414}
1515```
@@ -38,7 +38,7 @@ dependencies {
3838 // To prevent this, there is a separate library you can apply here.
3939 // It provides a copy of the JUnit 5 Runtime used in a more recent build
4040 // of IntelliJ, overriding the one embedded in Android Studio.
41- testCompileOnly "de.mannodermaus.gradle.plugins:android-junit5-embedded-runtime:1.0.0-RC3-rev1 "
41+ testCompileOnly "de.mannodermaus.gradle.plugins:android-junit5-embedded-runtime:1.0.0"
4242}
4343```
4444
@@ -58,15 +58,15 @@ However, there are some additional properties that you can apply:
5858
5959``` groovy
6060junitPlatform {
61- // The JUnit Jupiter dependency version to use; matches the platform's milestone by default
62- jupiterVersion "5.0.0-RC3 "
63- // The JUnit Vintage Engine dependency version to use; matches the platform's milestone by default
64- vintageVersion "4.12.0-RC3 "
61+ // The JUnit Jupiter dependency version to use; matches the platform's version by default
62+ jupiterVersion "5.0.0"
63+ // The JUnit Vintage Engine dependency version to use; matches the platform's version by default
64+ vintageVersion "4.12.0"
6565}
6666```
6767
6868 [ junit5gh ] : https://github.com/junit-team/junit5
6969 [ junit5ug ] : http://junit.org/junit5/docs/current/user-guide
7070 [ travisci ] : https://travis-ci.org/aurae/android-junit5
7171 [ sonatyperepo ] : https://oss.sonatype.org/content/repositories/snapshots
72- [ sampletests ] : https://github.com/aurae/android-junit5/tree/master/ sample/src/test
72+ [ sampletests ] : sample/src/test
0 commit comments