Skip to content

Commit 851fa3f

Browse files
committed
Plugin 1.10.0.0 & Instrumentation 1.4.0
1 parent 23f7429 commit 851fa3f

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

README.md

+14-14
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.9.3.0"
25+
id("de.mannodermaus.android-junit5") version "1.10.0.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.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")
3232

3333
// (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")
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.9.3")
38+
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.10.0")
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.9.3.0"
48+
id "de.mannodermaus.android-junit5" version "1.10.0.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.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"
5555
5656
// (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"
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.9.3"
61+
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.10.0"
6262
}
6363
```
6464
</details>
@@ -75,7 +75,7 @@ If you prefer to use the legacy way to declare the dependency instead, remove th
7575
```kotlin
7676
buildscript {
7777
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")
7979
}
8080
}
8181
```
@@ -87,7 +87,7 @@ If you prefer to use the legacy way to declare the dependency instead, remove th
8787
```kotlin
8888
buildscript {
8989
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"
9191
}
9292
}
9393
```
@@ -114,7 +114,7 @@ Before you can write instrumentation tests with JUnit Jupiter, make sure that yo
114114

115115
```kotlin
116116
dependencies {
117-
androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.9.3")
117+
androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
118118
}
119119
```
120120
</details>
@@ -124,7 +124,7 @@ Before you can write instrumentation tests with JUnit Jupiter, make sure that yo
124124

125125
```groovy
126126
dependencies {
127-
androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.9.3"
127+
androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.10.0"
128128
}
129129
```
130130
</details>

build-logic/src/main/kotlin/Environment.kt

+4-4
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ object Artifacts {
8888
platform = Java,
8989
groupId = "de.mannodermaus.gradle.plugins",
9090
artifactId = "android-junit5",
91-
currentVersion = "1.10.0.0",
92-
latestStableVersion = "1.9.3.0",
91+
currentVersion = "1.10.0.1-SNAPSHOT",
92+
latestStableVersion = "1.10.0.0",
9393
license = license,
9494
description = "Unit Testing with JUnit 5 for Android."
9595
)
@@ -99,8 +99,8 @@ object Artifacts {
9999
*/
100100
object Instrumentation {
101101
const val groupId = "de.mannodermaus.junit5"
102-
private const val currentVersion = "1.4.0"
103-
const val latestStableVersion = "1.3.0"
102+
private const val currentVersion = "1.4.1-SNAPSHOT"
103+
const val latestStableVersion = "1.4.0"
104104

105105
val Core = Deployed(
106106
platform = Android(minSdk = 14),

0 commit comments

Comments
 (0)