Skip to content

Commit 2c0b1a1

Browse files
committed
Update README.md
1 parent 501f7d2 commit 2c0b1a1

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Furthermore, this repository provides a small showcase of the functionality prov
2424
```kotlin
2525
buildscript {
2626
dependencies {
27-
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.7.0.0")
27+
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.7.1.0")
2828
}
2929
}
3030
```
@@ -36,7 +36,7 @@ Furthermore, this repository provides a small showcase of the functionality prov
3636
```groovy
3737
buildscript {
3838
dependencies {
39-
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.7.0.0"
39+
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.7.1.0"
4040
}
4141
}
4242
```
@@ -57,15 +57,15 @@ Snapshots of the development version are available through [Sonatype's `snapshot
5757

5858
dependencies {
5959
// (Required) Writing and executing Unit Tests on the JUnit Platform
60-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.7.0")
61-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.7.0")
60+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.7.1")
61+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.7.1")
6262

6363
// (Optional) If you need "Parameterized Tests"
64-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.7.0")
64+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.7.1")
6565

6666
// (Optional) If you also have JUnit 4-based tests
6767
testImplementation("junit:junit:4.13")
68-
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.7.0")
68+
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.7.1")
6969
}
7070
```
7171
</details>
@@ -78,15 +78,15 @@ Snapshots of the development version are available through [Sonatype's `snapshot
7878
7979
dependencies {
8080
// (Required) Writing and executing Unit Tests on the JUnit Platform
81-
testImplementation "org.junit.jupiter:junit-jupiter-api:5.7.0"
82-
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.7.0"
81+
testImplementation "org.junit.jupiter:junit-jupiter-api:5.7.1"
82+
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.7.1"
8383
8484
// (Optional) If you need "Parameterized Tests"
85-
testImplementation "org.junit.jupiter:junit-jupiter-params:5.7.0"
85+
testImplementation "org.junit.jupiter:junit-jupiter-params:5.7.1"
8686
8787
// (Optional) If you also have JUnit 4-based tests
8888
testImplementation "junit:junit:4.13"
89-
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.7.0"
89+
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.7.1"
9090
}
9191
```
9292
</details>
@@ -128,7 +128,7 @@ To start writing instrumentation tests with JUnit Jupiter, make the following ch
128128
dependencies {
129129
// 4) Jupiter API & Test Runner, if you don't have it already
130130
androidTestImplementation("androidx.test:runner:1.2.0")
131-
androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.7.0")
131+
androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.7.1")
132132
133133
// 5) The instrumentation test companion libraries
134134
androidTestImplementation("de.mannodermaus.junit5:android-test-core:1.2.0")
@@ -159,7 +159,7 @@ To start writing instrumentation tests with JUnit Jupiter, make the following ch
159159
dependencies {
160160
// 4) Jupiter API & Test Runner, if you don't have it already
161161
androidTestImplementation "androidx.test:runner:1.2.0"
162-
androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.7.0"
162+
androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.7.1"
163163
164164
// 5) The instrumentation test companion libraries
165165
androidTestImplementation "de.mannodermaus.junit5:android-test-core:1.2.0"

0 commit comments

Comments
 (0)