Skip to content

Commit 343190e

Browse files
committed
Release 1.0.0
1 parent 5a5d5d0 commit 343190e

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A Gradle plugin that allows for the execution of [JUnit 5][junit5gh] unit tests
99
```groovy
1010
buildscript {
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
6060
junitPlatform {
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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ android.injected.build.model.only.versioned = 3
55

66
# Artifact configuration (common)
77
GROUP_ID = de.mannodermaus.gradle.plugins
8-
VERSION_NAME = 1.0.0-SNAPSHOT
8+
VERSION_NAME = 1.0.0
99
VCS_URL = https://github.com/aurae/android-junit5
1010

1111
# Artifact configuration (plugin)

sample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99

1010
dependencies {
1111
//noinspection GradleDynamicVersion
12-
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.0.0-RC3-rev1-SNAPSHOT"
12+
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.0.0-SNAPSHOT"
1313
classpath "com.android.tools.build:gradle:$ANDROID_PLUGIN_3X_VERSION"
1414
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
1515
}

0 commit comments

Comments
 (0)