Skip to content

Commit

Permalink
Merge pull request #120 from koral--/release0217
Browse files Browse the repository at this point in the history
Release 0.2.17
  • Loading branch information
koral-- authored Dec 21, 2023
2 parents 27ff6a9 + 82683a1 commit 26bd453
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.2.17 - 2023-12-21

- Fix mockable Android JAR exclusion on Windows [#116](https://github.com/koral--/gradle-pitest-plugin/issue/101)

# 0.2.16 - 2023-11-27

- Merge upstream changes with adding junit platform dependency [#101](https://github.com/koral--/gradle-pitest-plugin/issue/101)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ which supports Android gradle projects.

```groovy
plugins {
id 'pl.droidsonroids.pitest' version '0.2.16'
id 'pl.droidsonroids.pitest' version '0.2.17'
}
```

```kotlin
plugins {
id("pl.droidsonroids.pitest") version "0.2.16"
id("pl.droidsonroids.pitest") version "0.2.17"
}
```

Expand All @@ -25,7 +25,7 @@ buildscript {
google()
}
dependencies {
classpath("pl.droidsonroids.gradle:gradle-pitest-plugin:0.2.16")
classpath("pl.droidsonroids.gradle:gradle-pitest-plugin:0.2.17")
}
}

Expand Down Expand Up @@ -64,9 +64,9 @@ In such case default mockable Android JAR won't be added and alternative one wil
## Using jetifier
This plugin tries to discover all the unit test dependencies and add them to the pitest classpath automatically.
But, this feature doesn't work with [jetifier](https://developer.android.com/studio/command-line/jetifier)
(`android.enableJetifier=true` in `gradle.properties`).
(`android.enableJetifier=true` in `gradle.properties`).

If you are using jetifier and encounter `NoClassDefFoundError`s in tests run under pitest, you may want to add
If you are using jetifier and encounter `NoClassDefFoundError`s in tests run under pitest, you may want to add
some dependencies manually to the `pitestTestCompile` configuration. For example:
```groovy
buildscript {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=0.2.16
VERSION_NAME=0.2.17
GROUP=pl.droidsonroids.gradle
POM_DESCRIPTION=Gradle plugin for PIT Mutation Testing in Android projects
POM_URL=https://github.com/koral--/gradle-pitest-plugin
Expand Down

0 comments on commit 26bd453

Please sign in to comment.