Skip to content

Commit

Permalink
Plugin 1.10.0.0 & Instrumentation 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mannodermaus committed Nov 4, 2023
1 parent 23f7429 commit 851fa3f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@ To get started, declare the plugin in your `app` module's build script alongside

```kotlin
plugins {
id("de.mannodermaus.android-junit5") version "1.9.3.0"
id("de.mannodermaus.android-junit5") version "1.10.0.0"
}

dependencies {
// (Required) Writing and executing Unit Tests on the JUnit Platform
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.3")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.3")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.0")

// (Optional) If you need "Parameterized Tests"
testImplementation("org.junit.jupiter:junit-jupiter-params:5.9.3")
testImplementation("org.junit.jupiter:junit-jupiter-params:5.10.0")

// (Optional) If you also have JUnit 4-based tests
testImplementation("junit:junit:4.13.2")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.9.3")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.10.0")
}
```
</details>
Expand All @@ -45,20 +45,20 @@ To get started, declare the plugin in your `app` module's build script alongside

```groovy
plugins {
id "de.mannodermaus.android-junit5" version "1.9.3.0"
id "de.mannodermaus.android-junit5" version "1.10.0.0"
}

dependencies {
// (Required) Writing and executing Unit Tests on the JUnit Platform
testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.3"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.3"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.0"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.0"

// (Optional) If you need "Parameterized Tests"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.9.3"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.0"

// (Optional) If you also have JUnit 4-based tests
testImplementation "junit:junit:4.13.2"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.9.3"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.10.0"
}
```
</details>
Expand All @@ -75,7 +75,7 @@ If you prefer to use the legacy way to declare the dependency instead, remove th
```kotlin
buildscript {
dependencies {
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.9.3.0")
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.10.0.0")
}
}
```
Expand All @@ -87,7 +87,7 @@ If you prefer to use the legacy way to declare the dependency instead, remove th
```kotlin
buildscript {
dependencies {
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.9.3.0"
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.10.0.0"
}
}
```
Expand All @@ -114,7 +114,7 @@ Before you can write instrumentation tests with JUnit Jupiter, make sure that yo
```kotlin
dependencies {
androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.9.3")
androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
}
```
</details>
Expand All @@ -124,7 +124,7 @@ Before you can write instrumentation tests with JUnit Jupiter, make sure that yo
```groovy
dependencies {
androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.9.3"
androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.10.0"
}
```
</details>
Expand Down
8 changes: 4 additions & 4 deletions build-logic/src/main/kotlin/Environment.kt
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ object Artifacts {
platform = Java,
groupId = "de.mannodermaus.gradle.plugins",
artifactId = "android-junit5",
currentVersion = "1.10.0.0",
latestStableVersion = "1.9.3.0",
currentVersion = "1.10.0.1-SNAPSHOT",
latestStableVersion = "1.10.0.0",
license = license,
description = "Unit Testing with JUnit 5 for Android."
)
Expand All @@ -99,8 +99,8 @@ object Artifacts {
*/
object Instrumentation {
const val groupId = "de.mannodermaus.junit5"
private const val currentVersion = "1.4.0"
const val latestStableVersion = "1.3.0"
private const val currentVersion = "1.4.1-SNAPSHOT"
const val latestStableVersion = "1.4.0"

val Core = Deployed(
platform = Android(minSdk = 14),
Expand Down

0 comments on commit 851fa3f

Please sign in to comment.