Skip to content

Commit 16125ff

Browse files
author
Marcel Schnelle
committed
Prepare 1.0.0-M4-rev3
1 parent c21bad2 commit 16125ff

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111
}
1212
dependencies {
1313
// 2. Add the plugin as a classpath dependency
14-
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.0.0-M4-rev2"
14+
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.0.0-M4-rev3"
1515
}
1616
}
1717
@@ -23,20 +23,22 @@ dependencies {
2323
// 4. Add the testCompile dependencies on JUnit Jupiter
2424
testCompile junitJupiter()
2525
26-
// 5. If you need parameterized tests:
26+
// 5. (Optional) If you need "parameterized tests"
2727
testCompile junitParams()
2828
}
2929
```
3030

3131
## Usage
3232

33-
This plugin configures the `junitPlatform` task for each registered build variant of a project. Starting with version `1.0.0-M4-rev1`, the plugin automatically attaches both the Jupiter & Vintage Engines.
33+
This plugin configures the `junitPlatform` task for each registered build variant of a project.
34+
It automatically attaches both the Jupiter & Vintage Engines during the execution phase of your tests.
3435

3536
Further instructions on how to write JUnit 5 tests can be found [in their User Guide][junit5ug].
3637

3738
## Extras
3839

39-
Inside the configuration closure applied by the plugin, you can specify the same properties as you would for a Java-based project with the JUnit Platform Gradle plugin.
40+
Inside the configuration closure applied by the plugin, you can specify the same properties as you would
41+
for a Java-based project with the JUnit Platform Gradle plugin.
4042
However, there are some additional properties that you can apply:
4143

4244
```groovy

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
# Artifact configuration
44
GROUP_ID = de.mannodermaus.gradle.plugins
55
ARTIFACT_ID = android-junit5
6-
VERSION_NAME = 1.0.0-M4-rev2
6+
VERSION_NAME = 1.0.0-M4-rev3
77
DESCRIPTION = Unit Testing with JUnit 5 for Android.
88
VCS_URL = https://github.com/aurae/android-junit5
99

1010
# Dependency versions (plugins)
1111
ANDROID_PLUGIN_VERSION_2X = 2.3.2
12-
ANDROID_PLUGIN_VERSION_3X = 3.0.0-alpha2
12+
ANDROID_PLUGIN_VERSION_3X = 3.0.0-alpha3
1313
BINTRAY_PLUGIN_VERSION = 1.3.1
1414

1515
# Dependency versions

0 commit comments

Comments
 (0)