Skip to content

Commit bc04065

Browse files
committed
Update readme
1 parent fa01f1c commit bc04065

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -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.11.0.0"
25+
id("de.mannodermaus.android-junit5") version "1.11.1.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.11.0")
31-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.0")
30+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1")
31+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.1")
3232

3333
// (Optional) If you need "Parameterized Tests"
34-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.0")
34+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1")
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.11.0")
38+
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.11.1")
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.11.0.0"
48+
id "de.mannodermaus.android-junit5" version "1.11.1.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.11.0"
54-
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.11.0"
53+
testImplementation "org.junit.jupiter:junit-jupiter-api:5.11.1"
54+
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.11.1"
5555
5656
// (Optional) If you need "Parameterized Tests"
57-
testImplementation "org.junit.jupiter:junit-jupiter-params:5.11.0"
57+
testImplementation "org.junit.jupiter:junit-jupiter-params:5.11.1"
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.11.0"
61+
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.11.1"
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.11.0.0")
79+
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.11.1.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.11.0.0"
97+
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.11.1.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.11.0")
127+
androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1")
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.11.0"
137+
androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.11.1"
138138
}
139139
```
140140
</details>
@@ -216,7 +216,7 @@ when it sets up the artifacts automatically. However, it is possible to choose a
216216

217217
```kotlin
218218
junitPlatform {
219-
instrumentationTests.version.set("1.5.0")
219+
instrumentationTests.version.set("1.6.0")
220220
}
221221
```
222222
</details>
@@ -226,7 +226,7 @@ when it sets up the artifacts automatically. However, it is possible to choose a
226226

227227
```groovy
228228
junitPlatform {
229-
instrumentationTests.version.set("1.5.0")
229+
instrumentationTests.version.set("1.6.0")
230230
}
231231
```
232232
</details>

0 commit comments

Comments
 (0)