From 16125ffed5fa03411e392a98c13ce36dc2a2b930 Mon Sep 17 00:00:00 2001 From: Marcel Schnelle Date: Sun, 11 Jun 2017 00:59:08 +0200 Subject: [PATCH] Prepare 1.0.0-M4-rev3 --- README.md | 10 ++++++---- gradle.properties | 4 ++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0a32c794..2a9b34a0 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ buildscript { } dependencies { // 2. Add the plugin as a classpath dependency - classpath "de.mannodermaus.gradle.plugins:android-junit5:1.0.0-M4-rev2" + classpath "de.mannodermaus.gradle.plugins:android-junit5:1.0.0-M4-rev3" } } @@ -23,20 +23,22 @@ dependencies { // 4. Add the testCompile dependencies on JUnit Jupiter testCompile junitJupiter() - // 5. If you need parameterized tests: + // 5. (Optional) If you need "parameterized tests" testCompile junitParams() } ``` ## Usage -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. +This plugin configures the `junitPlatform` task for each registered build variant of a project. +It automatically attaches both the Jupiter & Vintage Engines during the execution phase of your tests. Further instructions on how to write JUnit 5 tests can be found [in their User Guide][junit5ug]. ## Extras -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. +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. However, there are some additional properties that you can apply: ```groovy diff --git a/gradle.properties b/gradle.properties index 98e793bf..a22fbabb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,13 +3,13 @@ # Artifact configuration GROUP_ID = de.mannodermaus.gradle.plugins ARTIFACT_ID = android-junit5 -VERSION_NAME = 1.0.0-M4-rev2 +VERSION_NAME = 1.0.0-M4-rev3 DESCRIPTION = Unit Testing with JUnit 5 for Android. VCS_URL = https://github.com/aurae/android-junit5 # Dependency versions (plugins) ANDROID_PLUGIN_VERSION_2X = 2.3.2 -ANDROID_PLUGIN_VERSION_3X = 3.0.0-alpha2 +ANDROID_PLUGIN_VERSION_3X = 3.0.0-alpha3 BINTRAY_PLUGIN_VERSION = 1.3.1 # Dependency versions