Skip to content

Commit

Permalink
Prepare 1.3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mannodermaus committed Dec 31, 2018
1 parent 61a1166 commit bddf332
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Furthermore, this repository provides a small showcase of the functionality prov
```groovy
buildscript {
dependencies {
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.3.1.1"
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.3.2.0"
}
}
```
Expand All @@ -31,7 +31,7 @@ Furthermore, this repository provides a small showcase of the functionality prov
```kotlin
buildscript {
dependencies {
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.3.1.1")
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.3.2.0")
}
}
```
Expand All @@ -51,15 +51,15 @@ Snapshots of the development version are available through [Sonatype's `snapshot
dependencies {
// (Required) Writing and executing Unit Tests on the JUnit Platform
testImplementation "org.junit.jupiter:junit-jupiter-api:5.3.1"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.1"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.3.2"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.2"
// (Optional) If you need "Parameterized Tests"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.3.1"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.3.2"
// (Optional) If you also have JUnit 4-based tests
testImplementation "junit:junit:4.12"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.3.1"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.3.2"
}
```
</details>
Expand All @@ -74,15 +74,15 @@ Snapshots of the development version are available through [Sonatype's `snapshot
dependencies {
// (Required) Writing and executing Unit Tests on the JUnit Platform
testImplementation("org.junit.jupiter:junit-jupiter-api:5.3.1")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.3.1")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.3.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.3.2")
// (Optional) If you need "Parameterized Tests"
testImplementation("org.junit.jupiter:junit-jupiter-params:5.3.1")
testImplementation("org.junit.jupiter:junit-jupiter-params:5.3.2")
// (Optional) If you also have JUnit 4-based tests
testImplementation("junit:junit:4.12")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.3.1")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.3.2")
}
```
</details>
Expand Down Expand Up @@ -117,12 +117,12 @@ To start writing instrumentation tests with JUnit Jupiter, add the following to
}
dependencies {
// (Required) Writing tests for JUnit Jupiter
androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.3.1"
androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.3.2"
// (Required) The instrumentation test companion library
androidTestImplementation "de.mannodermaus.junit5:android-instrumentation-test:0.2.2"
// (Required) Runtime dependencies to orchestrate the execution on-device
androidTestRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.1"
androidTestRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.2"
androidTestRuntimeOnly "org.junit.platform:junit-platform-runner:1.3.1"
androidTestRuntimeOnly "de.mannodermaus.junit5:android-instrumentation-test-runner:0.2.2"
}
Expand All @@ -143,12 +143,12 @@ To start writing instrumentation tests with JUnit Jupiter, add the following to
}
dependencies {
// (Required) Writing tests for JUnit Jupiter
androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.3.1")
androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.3.2")
// (Required) The instrumentation test companion library
androidTestImplementation("de.mannodermaus.junit5:android-instrumentation-test:0.2.2")
// (Required) Runtime dependencies to orchestrate the execution on-device
androidTestRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.3.1")
androidTestRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.3.2")
androidTestRuntimeOnly("org.junit.platform:junit-platform-runner:1.3.1")
androidTestRuntimeOnly("de.mannodermaus.junit5:android-instrumentation-test-runner:0.2.2")
}
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Artifacts.kt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ object Artifacts {
platform = Java,
groupId = "de.mannodermaus.gradle.plugins",
artifactId = "android-junit5",
currentVersion = "1.3.2.0-SNAPSHOT",
currentVersion = "1.3.2.0",
latestStableVersion = "1.3.2.0-SNAPSHOT",
license = license,
description = "Unit Testing with JUnit 5 for Android."
Expand Down

0 comments on commit bddf332

Please sign in to comment.