Skip to content

Commit

Permalink
Plugin 1.9.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mannodermaus committed Apr 29, 2023
1 parent 7212400 commit 28ea410
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 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.2.0"
id("de.mannodermaus.android-junit5") version "1.9.3.0"
}

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

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

// (Optional) If you also have JUnit 4-based tests
testImplementation("junit:junit:4.13.2")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.9.2")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.9.3")
}
```
</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.2.0"
id "de.mannodermaus.android-junit5" version "1.9.3.0"
}

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

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

// (Optional) If you also have JUnit 4-based tests
testImplementation "junit:junit:4.13.2"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.9.2"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.9.3"
}
```
</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.2.0")
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.9.3.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.2.0"
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.9.3.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.2")
androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.9.3")
}
```
</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.2"
androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.9.3"
}
```
</details>
Expand Down
2 changes: 1 addition & 1 deletion build-logic/src/main/kotlin/Environment.kt
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ object Artifacts {
platform = Java,
groupId = "de.mannodermaus.gradle.plugins",
artifactId = "android-junit5",
currentVersion = "1.9.3.0-SNAPSHOT",
currentVersion = "1.9.3.0",
latestStableVersion = "1.9.2.0",
license = license,
description = "Unit Testing with JUnit 5 for Android."
Expand Down
2 changes: 2 additions & 0 deletions plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ Change Log
==========

## Unreleased

## 1.9.3.0 (2023-04-29)
- JUnit 5.9.3

## 1.9.2.0 (2023-04-29)
Expand Down

0 comments on commit 28ea410

Please sign in to comment.