@@ -22,20 +22,20 @@ To get started, declare the plugin in your `app` module's build script alongside
2222
2323 ``` kotlin
2424 plugins {
25- id(" de.mannodermaus.android-junit5" ) version " 1.13.1 .0"
25+ id(" de.mannodermaus.android-junit5" ) version " 1.13.2 .0"
2626 }
2727
2828 dependencies {
2929 // (Required) Writing and executing Unit Tests on the JUnit Platform
30- testImplementation(" org.junit.jupiter:junit-jupiter-api:5.13.1 " )
31- testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.13.1 " )
30+ testImplementation(" org.junit.jupiter:junit-jupiter-api:5.13.2 " )
31+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.13.2 " )
3232
3333 // (Optional) If you need "Parameterized Tests"
34- testImplementation(" org.junit.jupiter:junit-jupiter-params:5.13.1 " )
34+ testImplementation(" org.junit.jupiter:junit-jupiter-params:5.13.2 " )
3535
3636 // (Optional) If you also have JUnit 4-based tests
3737 testImplementation(" junit:junit:4.13.2" )
38- testRuntimeOnly(" org.junit.vintage:junit-vintage-engine:5.13.1 " )
38+ testRuntimeOnly(" org.junit.vintage:junit-vintage-engine:5.13.2 " )
3939 }
4040 ```
4141</details >
@@ -45,20 +45,20 @@ To get started, declare the plugin in your `app` module's build script alongside
4545
4646 ``` groovy
4747 plugins {
48- id "de.mannodermaus.android-junit5" version "1.13.1 .0"
48+ id "de.mannodermaus.android-junit5" version "1.13.2 .0"
4949 }
5050
5151 dependencies {
5252 // (Required) Writing and executing Unit Tests on the JUnit Platform
53- testImplementation "org.junit.jupiter:junit-jupiter-api:5.13.1 "
54- testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.13.1 "
53+ testImplementation "org.junit.jupiter:junit-jupiter-api:5.13.2 "
54+ testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.13.2 "
5555
5656 // (Optional) If you need "Parameterized Tests"
57- testImplementation "org.junit.jupiter:junit-jupiter-params:5.13.1 "
57+ testImplementation "org.junit.jupiter:junit-jupiter-params:5.13.2 "
5858
5959 // (Optional) If you also have JUnit 4-based tests
6060 testImplementation "junit:junit:4.13.2"
61- testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.13.1 "
61+ testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.13.2 "
6262 }
6363 ```
6464</details >
@@ -76,7 +76,7 @@ If you prefer to use the legacy way to declare the dependency instead, remove th
7676 // In the root project's build.gradle.kts:
7777 buildscript {
7878 dependencies {
79- classpath(" de.mannodermaus.gradle.plugins:android-junit5:1.13.1 .0" )
79+ classpath(" de.mannodermaus.gradle.plugins:android-junit5:1.13.2 .0" )
8080 }
8181 }
8282
@@ -94,7 +94,7 @@ If you prefer to use the legacy way to declare the dependency instead, remove th
9494 // In the root project's build.gradle:
9595 buildscript {
9696 dependencies {
97- classpath "de.mannodermaus.gradle.plugins:android-junit5:1.13.1 .0"
97+ classpath "de.mannodermaus.gradle.plugins:android-junit5:1.13.2 .0"
9898 }
9999 }
100100
@@ -124,7 +124,7 @@ Before you can write instrumentation tests with JUnit Jupiter, make sure that yo
124124
125125 ``` kotlin
126126 dependencies {
127- androidTestImplementation(" org.junit.jupiter:junit-jupiter-api:5.13.1 " )
127+ androidTestImplementation(" org.junit.jupiter:junit-jupiter-api:5.13.2 " )
128128 }
129129 ```
130130</details >
@@ -134,7 +134,7 @@ Before you can write instrumentation tests with JUnit Jupiter, make sure that yo
134134
135135 ``` groovy
136136 dependencies {
137- androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.13.1 "
137+ androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.13.2 "
138138 }
139139 ```
140140</details >
@@ -285,7 +285,7 @@ before filing an issue with the latest one.
285285
286286| Your AGP Version| Suggested JUnit5 Plugin Version|
287287| ---| ---|
288- | ` >= 8.2.0 ` | ` 1.13.1 .0 ` |
288+ | ` >= 8.2.0 ` | ` 1.13.2 .0 ` |
289289| ` 8.0.0 ` - ` 8.1.4 ` | ` 1.12.2.0 ` |
290290| ` 7.0.0 ` - ` 7.4.2 ` | ` 1.10.0.0 ` |
291291| ` 4.0.0 ` - ` 4.2.2 ` | ` 1.8.2.1 ` |
0 commit comments