diff --git a/README.md b/README.md index 64237c3c..a91368b1 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.10.3.0" + id("de.mannodermaus.android-junit5") version "1.11.0.0" } dependencies { // (Required) Writing and executing Unit Tests on the JUnit Platform - testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.3") - testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.3") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.0") + testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.0") // (Optional) If you need "Parameterized Tests" - testImplementation("org.junit.jupiter:junit-jupiter-params:5.10.3") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.0") // (Optional) If you also have JUnit 4-based tests testImplementation("junit:junit:4.13.2") - testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.10.3") + testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.11.0") } ``` @@ -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.10.3.0" + id "de.mannodermaus.android-junit5" version "1.11.0.0" } dependencies { // (Required) Writing and executing Unit Tests on the JUnit Platform - testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.3" - testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.3" + testImplementation "org.junit.jupiter:junit-jupiter-api:5.11.0" + testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.11.0" // (Optional) If you need "Parameterized Tests" - testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.3" + testImplementation "org.junit.jupiter:junit-jupiter-params:5.11.0" // (Optional) If you also have JUnit 4-based tests testImplementation "junit:junit:4.13.2" - testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.10.3" + testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.11.0" } ``` @@ -76,7 +76,7 @@ If you prefer to use the legacy way to declare the dependency instead, remove th // In the root project's build.gradle.kts: buildscript { dependencies { - classpath("de.mannodermaus.gradle.plugins:android-junit5:1.10.3.0") + classpath("de.mannodermaus.gradle.plugins:android-junit5:1.11.0.0") } } @@ -94,7 +94,7 @@ If you prefer to use the legacy way to declare the dependency instead, remove th // In the root project's build.gradle: buildscript { dependencies { - classpath "de.mannodermaus.gradle.plugins:android-junit5:1.10.3.0" + classpath "de.mannodermaus.gradle.plugins:android-junit5:1.11.0.0" } } @@ -124,7 +124,7 @@ Before you can write instrumentation tests with JUnit Jupiter, make sure that yo ```kotlin dependencies { - androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.10.3") + androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.11.0") } ``` @@ -134,7 +134,7 @@ Before you can write instrumentation tests with JUnit Jupiter, make sure that yo ```groovy dependencies { - androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.10.3" + androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.11.0" } ``` diff --git a/build-logic/src/main/kotlin/Environment.kt b/build-logic/src/main/kotlin/Environment.kt index 062300b8..4195db20 100644 --- a/build-logic/src/main/kotlin/Environment.kt +++ b/build-logic/src/main/kotlin/Environment.kt @@ -87,8 +87,8 @@ object Artifacts { platform = Java, groupId = "de.mannodermaus.gradle.plugins", artifactId = "android-junit5", - currentVersion = "1.11.0.0", - latestStableVersion = "1.10.3.0", + currentVersion = "1.11.0.1-SNAPSHOT", + latestStableVersion = "1.11.0.0", description = "Unit Testing with JUnit 5 for Android." )