@@ -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.9.3 .0"
25
+ id(" de.mannodermaus.android-junit5" ) version " 1.10.0 .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.9.3 " )
31
- testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.9.3 " )
30
+ testImplementation(" org.junit.jupiter:junit-jupiter-api:5.10.0 " )
31
+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.10.0 " )
32
32
33
33
// (Optional) If you need "Parameterized Tests"
34
- testImplementation(" org.junit.jupiter:junit-jupiter-params:5.9.3 " )
34
+ testImplementation(" org.junit.jupiter:junit-jupiter-params:5.10.0 " )
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.9.3 " )
38
+ testRuntimeOnly(" org.junit.vintage:junit-vintage-engine:5.10.0 " )
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.9.3 .0"
48
+ id "de.mannodermaus.android-junit5" version "1.10.0 .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.9.3 "
54
- testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.3 "
53
+ testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.0 "
54
+ testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.0 "
55
55
56
56
// (Optional) If you need "Parameterized Tests"
57
- testImplementation "org.junit.jupiter:junit-jupiter-params:5.9.3 "
57
+ testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.0 "
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.9.3 "
61
+ testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.10.0 "
62
62
}
63
63
```
64
64
</details >
@@ -75,7 +75,7 @@ If you prefer to use the legacy way to declare the dependency instead, remove th
75
75
``` kotlin
76
76
buildscript {
77
77
dependencies {
78
- classpath(" de.mannodermaus.gradle.plugins:android-junit5:1.9.3 .0" )
78
+ classpath(" de.mannodermaus.gradle.plugins:android-junit5:1.10.0 .0" )
79
79
}
80
80
}
81
81
```
@@ -87,7 +87,7 @@ If you prefer to use the legacy way to declare the dependency instead, remove th
87
87
``` kotlin
88
88
buildscript {
89
89
dependencies {
90
- classpath " de.mannodermaus.gradle.plugins:android-junit5:1.9.3 .0"
90
+ classpath " de.mannodermaus.gradle.plugins:android-junit5:1.10.0 .0"
91
91
}
92
92
}
93
93
```
@@ -114,7 +114,7 @@ Before you can write instrumentation tests with JUnit Jupiter, make sure that yo
114
114
115
115
``` kotlin
116
116
dependencies {
117
- androidTestImplementation(" org.junit.jupiter:junit-jupiter-api:5.9.3 " )
117
+ androidTestImplementation(" org.junit.jupiter:junit-jupiter-api:5.10.0 " )
118
118
}
119
119
```
120
120
</details >
@@ -124,7 +124,7 @@ Before you can write instrumentation tests with JUnit Jupiter, make sure that yo
124
124
125
125
``` groovy
126
126
dependencies {
127
- androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.9.3 "
127
+ androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.10.0 "
128
128
}
129
129
```
130
130
</details >
0 commit comments