Skip to content

Commit 76f4121

Browse files
committed
Update README
1 parent 4aab11f commit 76f4121

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Furthermore, this repository provides a small showcase of the functionality prov
1616
```groovy
1717
buildscript {
1818
dependencies {
19-
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.2.0.0"
19+
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.3.1.0"
2020
}
2121
}
2222
```
@@ -30,15 +30,15 @@ apply plugin: "de.mannodermaus.android-junit5"
3030
3131
dependencies {
3232
// (Required) Writing and executing Unit Tests on the JUnit Platform
33-
testImplementation "org.junit.jupiter:junit-jupiter-api:5.2.0"
34-
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.2.0"
33+
testImplementation "org.junit.jupiter:junit-jupiter-api:5.3.1"
34+
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.1"
3535
3636
// (Optional) If you need "Parameterized Tests"
37-
testImplementation "org.junit.jupiter:junit-jupiter-params:5.2.0"
37+
testImplementation "org.junit.jupiter:junit-jupiter-params:5.3.1"
3838
3939
// (Optional) If you also have JUnit 4-based tests
4040
testImplementation "junit:junit:4.12"
41-
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.2.0"
41+
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.3.1"
4242
}
4343
```
4444

@@ -67,13 +67,13 @@ android {
6767
}
6868
dependencies {
6969
// (Required) Writing tests for JUnit Jupiter
70-
androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.2.0"
70+
androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.3.1"
7171
// (Required) The instrumentation test companion library
7272
androidTestImplementation "de.mannodermaus.junit5:android-instrumentation-test:0.2.2"
7373
7474
// (Required) Runtime dependencies to orchestrate the execution on-device
75-
androidTestRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.2.0"
76-
androidTestRuntimeOnly "org.junit.platform:junit-platform-runner:1.2.0"
75+
androidTestRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.1"
76+
androidTestRuntimeOnly "org.junit.platform:junit-platform-runner:1.3.1"
7777
androidTestRuntimeOnly "de.mannodermaus.junit5:android-instrumentation-test-runner:0.2.2"
7878
}
7979
```

0 commit comments

Comments
 (0)