Skip to content

Commit

Permalink
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ A Gradle plugin that allows for the execution of [JUnit 5][junit5gh] unit tests
```groovy
buildscript {
dependencies {
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.0.0-RC3-rev1"
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.0.0"
}
}
```
@@ -38,7 +38,7 @@ dependencies {
// To prevent this, there is a separate library you can apply here.
// It provides a copy of the JUnit 5 Runtime used in a more recent build
// of IntelliJ, overriding the one embedded in Android Studio.
testCompileOnly "de.mannodermaus.gradle.plugins:android-junit5-embedded-runtime:1.0.0-RC3-rev1"
testCompileOnly "de.mannodermaus.gradle.plugins:android-junit5-embedded-runtime:1.0.0"
}
```

@@ -58,15 +58,15 @@ However, there are some additional properties that you can apply:

```groovy
junitPlatform {
// The JUnit Jupiter dependency version to use; matches the platform's milestone by default
jupiterVersion "5.0.0-RC3"
// The JUnit Vintage Engine dependency version to use; matches the platform's milestone by default
vintageVersion "4.12.0-RC3"
// The JUnit Jupiter dependency version to use; matches the platform's version by default
jupiterVersion "5.0.0"
// The JUnit Vintage Engine dependency version to use; matches the platform's version by default
vintageVersion "4.12.0"
}
```

[junit5gh]: https://github.com/junit-team/junit5
[junit5ug]: http://junit.org/junit5/docs/current/user-guide
[travisci]: https://travis-ci.org/aurae/android-junit5
[sonatyperepo]: https://oss.sonatype.org/content/repositories/snapshots
[sampletests]: https://github.com/aurae/android-junit5/tree/master/sample/src/test
[sampletests]: sample/src/test
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ android.injected.build.model.only.versioned = 3

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

# Artifact configuration (plugin)
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ buildscript {

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

0 comments on commit 343190e

Please sign in to comment.