From 899422edf88f68effb91a4fa11646d9c26a0daab Mon Sep 17 00:00:00 2001 From: Marcel Schnelle Date: Sat, 29 Apr 2023 15:36:09 +0900 Subject: [PATCH] Plugin 1.9.1.0 --- README.md | 28 +++++++++++----------- build-logic/src/main/kotlin/Environment.kt | 2 +- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 48c8a637..1e26c968 100644 --- a/README.md +++ b/README.md @@ -22,20 +22,20 @@ To get started, declare the plugin in your `app` module's build script alongside ```kotlin plugins { - id("de.mannodermaus.android-junit5") version "1.9.0.0" + id("de.mannodermaus.android-junit5") version "1.9.1.0" } dependencies { // (Required) Writing and executing Unit Tests on the JUnit Platform - testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0") - testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.0") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.1") + testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.1") // (Optional) If you need "Parameterized Tests" - testImplementation("org.junit.jupiter:junit-jupiter-params:5.9.0") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.9.1") // (Optional) If you also have JUnit 4-based tests testImplementation("junit:junit:4.13.2") - testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.9.0") + testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.9.1") } ``` @@ -45,20 +45,20 @@ To get started, declare the plugin in your `app` module's build script alongside ```groovy plugins { - id "de.mannodermaus.android-junit5" version "1.9.0.0" + id "de.mannodermaus.android-junit5" version "1.9.1.0" } dependencies { // (Required) Writing and executing Unit Tests on the JUnit Platform - testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.0" - testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.0" + testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.1" + testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.1" // (Optional) If you need "Parameterized Tests" - testImplementation "org.junit.jupiter:junit-jupiter-params:5.9.0" + testImplementation "org.junit.jupiter:junit-jupiter-params:5.9.1" // (Optional) If you also have JUnit 4-based tests testImplementation "junit:junit:4.13.2" - testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.9.0" + testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.9.1" } ``` @@ -75,7 +75,7 @@ If you prefer to use the legacy way to declare the dependency instead, remove th ```kotlin buildscript { dependencies { - classpath("de.mannodermaus.gradle.plugins:android-junit5:1.9.0.0") + classpath("de.mannodermaus.gradle.plugins:android-junit5:1.9.1.0") } } ``` @@ -87,7 +87,7 @@ If you prefer to use the legacy way to declare the dependency instead, remove th ```kotlin buildscript { dependencies { - classpath "de.mannodermaus.gradle.plugins:android-junit5:1.9.0.0" + classpath "de.mannodermaus.gradle.plugins:android-junit5:1.9.1.0" } } ``` @@ -114,7 +114,7 @@ Before you can write instrumentation tests with JUnit Jupiter, make sure that yo ```kotlin dependencies { - androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0") + androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.9.1") } ``` @@ -124,7 +124,7 @@ Before you can write instrumentation tests with JUnit Jupiter, make sure that yo ```groovy dependencies { - androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.9.0" + androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.9.1" } ``` diff --git a/build-logic/src/main/kotlin/Environment.kt b/build-logic/src/main/kotlin/Environment.kt index d9246159..19dc8344 100644 --- a/build-logic/src/main/kotlin/Environment.kt +++ b/build-logic/src/main/kotlin/Environment.kt @@ -87,7 +87,7 @@ object Artifacts { platform = Java, groupId = "de.mannodermaus.gradle.plugins", artifactId = "android-junit5", - currentVersion = "1.9.1.0-SNAPSHOT", + currentVersion = "1.9.1.0", latestStableVersion = "1.9.0.0", license = license, description = "Unit Testing with JUnit 5 for Android."