@@ -22,7 +22,7 @@ Furthermore, this repository provides a small showcase of the functionality prov
2222 ``` kotlin
2323 buildscript {
2424 dependencies {
25- classpath(" de.mannodermaus.gradle.plugins:android-junit5:1.8.0 .0" )
25+ classpath(" de.mannodermaus.gradle.plugins:android-junit5:1.8.1 .0" )
2626 }
2727 }
2828 ```
@@ -34,7 +34,7 @@ Furthermore, this repository provides a small showcase of the functionality prov
3434 ``` groovy
3535 buildscript {
3636 dependencies {
37- classpath "de.mannodermaus.gradle.plugins:android-junit5:1.8.0 .0"
37+ classpath "de.mannodermaus.gradle.plugins:android-junit5:1.8.1 .0"
3838 }
3939 }
4040 ```
@@ -55,15 +55,15 @@ Snapshots of the development version are available through [Sonatype's `snapshot
5555
5656 dependencies {
5757 // (Required) Writing and executing Unit Tests on the JUnit Platform
58- testImplementation(" org.junit.jupiter:junit-jupiter-api:5.8.0 " )
59- testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.8.0 " )
58+ testImplementation(" org.junit.jupiter:junit-jupiter-api:5.8.1 " )
59+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.8.1 " )
6060
6161 // (Optional) If you need "Parameterized Tests"
62- testImplementation(" org.junit.jupiter:junit-jupiter-params:5.8.0 " )
62+ testImplementation(" org.junit.jupiter:junit-jupiter-params:5.8.1 " )
6363
6464 // (Optional) If you also have JUnit 4-based tests
6565 testImplementation(" junit:junit:4.13.2" )
66- testRuntimeOnly(" org.junit.vintage:junit-vintage-engine:5.8.0 " )
66+ testRuntimeOnly(" org.junit.vintage:junit-vintage-engine:5.8.1 " )
6767 }
6868 ```
6969</details >
@@ -76,15 +76,15 @@ Snapshots of the development version are available through [Sonatype's `snapshot
7676
7777 dependencies {
7878 // (Required) Writing and executing Unit Tests on the JUnit Platform
79- testImplementation "org.junit.jupiter:junit-jupiter-api:5.8.0 "
80- testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.8.0 "
79+ testImplementation "org.junit.jupiter:junit-jupiter-api:5.8.1 "
80+ testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.8.1 "
8181
8282 // (Optional) If you need "Parameterized Tests"
83- testImplementation "org.junit.jupiter:junit-jupiter-params:5.8.0 "
83+ testImplementation "org.junit.jupiter:junit-jupiter-params:5.8.1 "
8484
8585 // (Optional) If you also have JUnit 4-based tests
8686 testImplementation "junit:junit:4.13.2"
87- testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.8.0 "
87+ testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.8.1 "
8888 }
8989 ```
9090</details >
@@ -126,7 +126,7 @@ To start writing instrumentation tests with JUnit Jupiter, make the following ch
126126 dependencies {
127127 // 4) Jupiter API & Test Runner, if you don't have it already
128128 androidTestImplementation("androidx.test:runner:1.4.0")
129- androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.8.0 ")
129+ androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.8.1 ")
130130
131131 // 5) The instrumentation test companion libraries
132132 androidTestImplementation("de.mannodermaus.junit5:android-test-core:1.3.0")
@@ -157,7 +157,7 @@ To start writing instrumentation tests with JUnit Jupiter, make the following ch
157157 dependencies {
158158 // 4) Jupiter API & Test Runner, if you don't have it already
159159 androidTestImplementation "androidx.test:runner:1.4.0"
160- androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.8.0 "
160+ androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.8.1 "
161161
162162 // 5) The instrumentation test companion libraries
163163 androidTestImplementation "de.mannodermaus.junit5:android-test-core:1.3.0"
0 commit comments