diff --git a/CHANGELOG.md b/CHANGELOG.md index 12792534..19399e1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index c2a578d3..e3856cc2 100644 --- a/README.md +++ b/README.md @@ -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" } ``` @@ -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") } } @@ -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 { diff --git a/gradle.properties b/gradle.properties index 914b8b57..e865cf7c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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