From 343190e9bb527fa261e7921bf678beb871eef955 Mon Sep 17 00:00:00 2001 From: Marcel Schnelle Date: Mon, 11 Sep 2017 07:50:23 +0900 Subject: [PATCH] Release 1.0.0 --- README.md | 14 +++++++------- gradle.properties | 2 +- sample/build.gradle | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index ebbef567..cbbae868 100644 --- a/README.md +++ b/README.md @@ -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,10 +58,10 @@ 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" } ``` @@ -69,4 +69,4 @@ junitPlatform { [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 diff --git a/gradle.properties b/gradle.properties index f63f0ecc..971b6eb6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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) diff --git a/sample/build.gradle b/sample/build.gradle index 2161821d..fbe4bbe6 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -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" }