From b14068156597e63cdb9af310b14c4cebb99b003c Mon Sep 17 00:00:00 2001 From: Marcel Schnelle Date: Wed, 19 Jul 2017 09:37:29 +0900 Subject: [PATCH] Released M6 --- README.md | 6 +++--- gradle.properties | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1a11ea76..b6167619 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-M5" + classpath "de.mannodermaus.gradle.plugins:android-junit5:1.0.0-M6" } } ``` @@ -46,9 +46,9 @@ 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-M5" + jupiterVersion "5.0.0-M6" // The JUnit Vintage Engine dependency version to use; matches the platform's milestone by default - vintageVersion "4.12.0-M5" + vintageVersion "4.12.0-M6" } ``` diff --git a/gradle.properties b/gradle.properties index 19ac660e..d82ef03f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ # Artifact configuration GROUP_ID = de.mannodermaus.gradle.plugins ARTIFACT_ID = android-junit5 -VERSION_NAME = 1.0.0-M6-SNAPSHOT +VERSION_NAME = 1.0.0-M6 LICENCE_NAME = EPL-1.0 DESCRIPTION = Unit Testing with JUnit 5 for Android. VCS_URL = https://github.com/aurae/android-junit5