Skip to content

Commit fbe06fc

Browse files
author
Marcel Schnelle
authored
Update dependencies to JUnit 5.4.2 (#162)
1 parent e6a4eb4 commit fbe06fc

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Furthermore, this repository provides a small showcase of the functionality prov
1919
```groovy
2020
buildscript {
2121
dependencies {
22-
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.4.1.0"
22+
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.4.2.0"
2323
}
2424
}
2525
```
@@ -31,7 +31,7 @@ Furthermore, this repository provides a small showcase of the functionality prov
3131
```kotlin
3232
buildscript {
3333
dependencies {
34-
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.4.1.0")
34+
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.4.2.0")
3535
}
3636
}
3737
```
@@ -51,15 +51,15 @@ Snapshots of the development version are available through [Sonatype's `snapshot
5151
5252
dependencies {
5353
// (Required) Writing and executing Unit Tests on the JUnit Platform
54-
testImplementation "org.junit.jupiter:junit-jupiter-api:5.4.1"
55-
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.4.1"
54+
testImplementation "org.junit.jupiter:junit-jupiter-api:5.4.2"
55+
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.4.2"
5656
5757
// (Optional) If you need "Parameterized Tests"
58-
testImplementation "org.junit.jupiter:junit-jupiter-params:5.4.1"
58+
testImplementation "org.junit.jupiter:junit-jupiter-params:5.4.2"
5959
6060
// (Optional) If you also have JUnit 4-based tests
6161
testImplementation "junit:junit:4.12"
62-
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.4.1"
62+
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.4.2"
6363
}
6464
```
6565
</details>
@@ -74,15 +74,15 @@ Snapshots of the development version are available through [Sonatype's `snapshot
7474

7575
dependencies {
7676
// (Required) Writing and executing Unit Tests on the JUnit Platform
77-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.4.1")
78-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.4.1")
77+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.4.2")
78+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.4.2")
7979

8080
// (Optional) If you need "Parameterized Tests"
81-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.4.1")
81+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.4.2")
8282

8383
// (Optional) If you also have JUnit 4-based tests
8484
testImplementation("junit:junit:4.12")
85-
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.4.1")
85+
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.4.2")
8686
}
8787
```
8888
</details>
@@ -130,7 +130,7 @@ To start writing instrumentation tests with JUnit Jupiter, make the following ch
130130
dependencies {
131131
// 5) Jupiter API & Test Runner, if you don't have it already
132132
androidTestImplementation "androidx.test:runner:1.1.1"
133-
androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.4.1"
133+
androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.4.2"
134134
135135
// 6) The instrumentation test companion libraries
136136
androidTestImplementation "de.mannodermaus.junit5:android-test-core:1.0.0"
@@ -165,7 +165,7 @@ To start writing instrumentation tests with JUnit Jupiter, make the following ch
165165
dependencies {
166166
// 5) Jupiter API & Test Runner, if you don't have it already
167167
androidTestImplementation("androidx.test:runner:1.1.1")
168-
androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.4.1")
168+
androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.4.2")
169169
170170
// 6) The instrumentation test companion libraries
171171
androidTestImplementation("de.mannodermaus.junit5:android-test-core:1.0.0")

buildSrc/src/main/kotlin/Artifacts.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ object Artifacts {
3535
platform = Java,
3636
groupId = "de.mannodermaus.gradle.plugins",
3737
artifactId = "android-junit5",
38-
currentVersion = "1.4.1.1-SNAPSHOT",
38+
currentVersion = "1.4.2.0-SNAPSHOT",
3939
latestStableVersion = "1.4.1.0",
4040
license = license,
4141
description = "Unit Testing with JUnit 5 for Android."

buildSrc/src/main/kotlin/Versions.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ object Versions {
6262

6363
const val junit_pioneer: String = "0.2.2" // available: "0.3.0"
6464

65-
const val org_junit_jupiter: String = "5.4.1"
65+
const val org_junit_jupiter: String = "5.4.2"
6666

67-
const val org_junit_platform: String = "1.4.1"
67+
const val org_junit_platform: String = "1.4.2"
6868

69-
const val junit_vintage_engine: String = "5.4.1"
69+
const val junit_vintage_engine: String = "5.4.2"
7070

7171
const val mockito_core: String = "2.19.0" // available: "2.23.4"
7272

0 commit comments

Comments
 (0)