@@ -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.9.1 .0"
25+ id(" de.mannodermaus.android-junit5" ) version " 1.9.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.9.1 " )
31- testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.9.1 " )
30+ testImplementation(" org.junit.jupiter:junit-jupiter-api:5.9.2 " )
31+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.9.2 " )
3232
3333 // (Optional) If you need "Parameterized Tests"
34- testImplementation(" org.junit.jupiter:junit-jupiter-params:5.9.1 " )
34+ testImplementation(" org.junit.jupiter:junit-jupiter-params:5.9.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.9.1 " )
38+ testRuntimeOnly(" org.junit.vintage:junit-vintage-engine:5.9.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.9.1 .0"
48+ id "de.mannodermaus.android-junit5" version "1.9.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.9.1 "
54- testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.1 "
53+ testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.2 "
54+ testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.2 "
5555
5656 // (Optional) If you need "Parameterized Tests"
57- testImplementation "org.junit.jupiter:junit-jupiter-params:5.9.1 "
57+ testImplementation "org.junit.jupiter:junit-jupiter-params:5.9.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.9.1 "
61+ testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.9.2 "
6262 }
6363 ```
6464</details >
@@ -75,7 +75,7 @@ If you prefer to use the legacy way to declare the dependency instead, remove th
7575 ``` kotlin
7676 buildscript {
7777 dependencies {
78- classpath(" de.mannodermaus.gradle.plugins:android-junit5:1.9.1 .0" )
78+ classpath(" de.mannodermaus.gradle.plugins:android-junit5:1.9.2 .0" )
7979 }
8080 }
8181 ```
@@ -87,7 +87,7 @@ If you prefer to use the legacy way to declare the dependency instead, remove th
8787 ``` kotlin
8888 buildscript {
8989 dependencies {
90- classpath " de.mannodermaus.gradle.plugins:android-junit5:1.9.1 .0"
90+ classpath " de.mannodermaus.gradle.plugins:android-junit5:1.9.2 .0"
9191 }
9292 }
9393 ```
@@ -114,7 +114,7 @@ Before you can write instrumentation tests with JUnit Jupiter, make sure that yo
114114
115115 ``` kotlin
116116 dependencies {
117- androidTestImplementation(" org.junit.jupiter:junit-jupiter-api:5.9.1 " )
117+ androidTestImplementation(" org.junit.jupiter:junit-jupiter-api:5.9.2 " )
118118 }
119119 ```
120120</details >
@@ -124,7 +124,7 @@ Before you can write instrumentation tests with JUnit Jupiter, make sure that yo
124124
125125 ``` groovy
126126 dependencies {
127- androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.9.1 "
127+ androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.9.2 "
128128 }
129129 ```
130130</details >
0 commit comments