@@ -22,20 +22,20 @@ To get started, declare the plugin in your `app` module's build script alongside
22
22
23
23
``` kotlin
24
24
plugins {
25
- id(" de.mannodermaus.android-junit5" ) version " 1.12.0 .0"
25
+ id(" de.mannodermaus.android-junit5" ) version " 1.12.1 .0"
26
26
}
27
27
28
28
dependencies {
29
29
// (Required) Writing and executing Unit Tests on the JUnit Platform
30
- testImplementation(" org.junit.jupiter:junit-jupiter-api:5.12.0 " )
31
- testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.12.0 " )
30
+ testImplementation(" org.junit.jupiter:junit-jupiter-api:5.12.1 " )
31
+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.12.1 " )
32
32
33
33
// (Optional) If you need "Parameterized Tests"
34
- testImplementation(" org.junit.jupiter:junit-jupiter-params:5.12.0 " )
34
+ testImplementation(" org.junit.jupiter:junit-jupiter-params:5.12.1 " )
35
35
36
36
// (Optional) If you also have JUnit 4-based tests
37
37
testImplementation(" junit:junit:4.13.2" )
38
- testRuntimeOnly(" org.junit.vintage:junit-vintage-engine:5.12.0 " )
38
+ testRuntimeOnly(" org.junit.vintage:junit-vintage-engine:5.12.1 " )
39
39
}
40
40
```
41
41
</details >
@@ -45,20 +45,20 @@ To get started, declare the plugin in your `app` module's build script alongside
45
45
46
46
``` groovy
47
47
plugins {
48
- id "de.mannodermaus.android-junit5" version "1.12.0 .0"
48
+ id "de.mannodermaus.android-junit5" version "1.12.1 .0"
49
49
}
50
50
51
51
dependencies {
52
52
// (Required) Writing and executing Unit Tests on the JUnit Platform
53
- testImplementation "org.junit.jupiter:junit-jupiter-api:5.12.0 "
54
- testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.12.0 "
53
+ testImplementation "org.junit.jupiter:junit-jupiter-api:5.12.1 "
54
+ testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.12.1 "
55
55
56
56
// (Optional) If you need "Parameterized Tests"
57
- testImplementation "org.junit.jupiter:junit-jupiter-params:5.12.0 "
57
+ testImplementation "org.junit.jupiter:junit-jupiter-params:5.12.1 "
58
58
59
59
// (Optional) If you also have JUnit 4-based tests
60
60
testImplementation "junit:junit:4.13.2"
61
- testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.12.0 "
61
+ testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.12.1 "
62
62
}
63
63
```
64
64
</details >
@@ -76,7 +76,7 @@ If you prefer to use the legacy way to declare the dependency instead, remove th
76
76
// In the root project's build.gradle.kts:
77
77
buildscript {
78
78
dependencies {
79
- classpath(" de.mannodermaus.gradle.plugins:android-junit5:1.12.0 .0" )
79
+ classpath(" de.mannodermaus.gradle.plugins:android-junit5:1.12.1 .0" )
80
80
}
81
81
}
82
82
@@ -94,7 +94,7 @@ If you prefer to use the legacy way to declare the dependency instead, remove th
94
94
// In the root project's build.gradle:
95
95
buildscript {
96
96
dependencies {
97
- classpath "de.mannodermaus.gradle.plugins:android-junit5:1.12.0 .0"
97
+ classpath "de.mannodermaus.gradle.plugins:android-junit5:1.12.1 .0"
98
98
}
99
99
}
100
100
@@ -124,7 +124,7 @@ Before you can write instrumentation tests with JUnit Jupiter, make sure that yo
124
124
125
125
``` kotlin
126
126
dependencies {
127
- androidTestImplementation(" org.junit.jupiter:junit-jupiter-api:5.12.0 " )
127
+ androidTestImplementation(" org.junit.jupiter:junit-jupiter-api:5.12.1 " )
128
128
}
129
129
```
130
130
</details >
@@ -134,7 +134,7 @@ Before you can write instrumentation tests with JUnit Jupiter, make sure that yo
134
134
135
135
``` groovy
136
136
dependencies {
137
- androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.12.0 "
137
+ androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.12.1 "
138
138
}
139
139
```
140
140
</details >
@@ -285,7 +285,7 @@ before filing an issue with the latest one.
285
285
286
286
| Your AGP Version| Suggested JUnit5 Plugin Version|
287
287
| ---| ---|
288
- | ` >= 8.0.0 ` | ` 1.12.0 .0 ` |
288
+ | ` >= 8.0.0 ` | ` 1.12.1 .0 ` |
289
289
| ` 7.0.0 ` - ` 7.4.2 ` | ` 1.10.0.0 ` |
290
290
| ` 4.0.0 ` - ` 4.2.2 ` | ` 1.8.2.1 ` |
291
291
| ` 3.5.0 ` - ` 3.6.4 ` | ` 1.7.1.1 ` |
0 commit comments