@@ -18,7 +18,7 @@ Add gradle-pitest-plugin to the `plugins` configuration in your `build.gradle` f
1818``` groovy
1919plugins {
2020 id 'java' //or 'java-library' - depending on your needs
21- id 'info.solidsoft.pitest' version '1.19.0-rc.1 '
21+ id 'info.solidsoft.pitest' version '1.19.0-rc.2 '
2222}
2323```
2424
@@ -28,7 +28,7 @@ plugins {
2828``` kotlin
2929plugins {
3030 id(" java" ) // or "java-library" - depending on your needs
31- id(" info.solidsoft.pitest" ) version " 1.19.0-rc.1 "
31+ id(" info.solidsoft.pitest" ) version " 1.19.0-rc.2 "
3232}
3333```
3434</details >
@@ -69,7 +69,7 @@ buildscript {
6969 //maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
7070 }
7171 dependencies {
72- classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0-rc.1 '
72+ classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0-rc.2 '
7373 }
7474}
7575```
@@ -87,7 +87,7 @@ buildscript {
8787 // }
8888 }
8989 dependencies {
90- classpath(" info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0-rc.1 " )
90+ classpath(" info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0-rc.2 " )
9191 }
9292}
9393```
@@ -118,7 +118,7 @@ The Pitest plugin does not need to be additionally configured if you use JUnit 4
118118``` groovy
119119pitest {
120120 targetClasses = ['our.base.package.*'] //by default "${project.group}.*"
121- pitestVersion = '1.19.6 ' //not needed when a default PIT version should be used
121+ pitestVersion = '1.20.3 ' //not needed when a default PIT version should be used
122122 threads = 4
123123 outputFormats = ['XML', 'HTML']
124124 timestampedReports = false
@@ -132,7 +132,7 @@ Idiomatic and more portable configuration:
132132``` kotlin
133133pitest {
134134 targetClasses.set(setOf (" our.base.package.*" )) // by default "${project.group}.*"
135- pitestVersion.set(" 1.19.6 " ) // not needed when a default PIT version should be used
135+ pitestVersion.set(" 1.20.3 " ) // not needed when a default PIT version should be used
136136 threads.set(4 )
137137 outputFormats.set(setOf (" XML" , " HTML" ))
138138 timestampedReports.set(false )
@@ -144,7 +144,7 @@ can be used for configuring plugin (instead of the `set()` method):
144144``` kotlin
145145pitest {
146146 targetClasses = setOf (" our.base.package.*" ) // by default "${project.group}.*"
147- pitestVersion = " 1.19.6 " // not needed when a default PIT version should be used
147+ pitestVersion = " 1.20.3 " // not needed when a default PIT version should be used
148148 threads = 4
149149 outputFormats = setOf (" XML" , " HTML" )
150150 timestampedReports = false
@@ -255,7 +255,7 @@ all subprojects which should be processed with PIT. A sample snippet from build.
255255``` groovy
256256//in root project configuration
257257plugins {
258- id 'info.solidsoft.pitest' version '1.19.0-rc.1 ' apply false
258+ id 'info.solidsoft.pitest' version '1.19.0-rc.2 ' apply false
259259}
260260
261261subprojects {
@@ -278,7 +278,7 @@ subprojects {
278278``` kotlin
279279// in root project configuration
280280plugins {
281- id(" info.solidsoft.pitest" ) version " 1.19.0-rc.1 "
281+ id(" info.solidsoft.pitest" ) version " 1.19.0-rc.2 "
282282}
283283
284284subprojects {
@@ -303,7 +303,7 @@ task `pitestReportAggregate`. Root project must be properly configured to use `p
303303``` groovy
304304//in root project configuration
305305plugins {
306- id 'info.solidsoft.pitest' version '1.19.0-rc.1 ' apply false
306+ id 'info.solidsoft.pitest' version '1.19.0-rc.2 ' apply false
307307}
308308
309309apply plugin: 'info.solidsoft.pitest.aggregator' // to 'pitestReportAggregate' appear
@@ -333,7 +333,7 @@ subprojects {
333333``` kotlin
334334// in root project configuration
335335plugins {
336- id(" info.solidsoft.pitest" ) version " 1.19.0-rc.1 "
336+ id(" info.solidsoft.pitest" ) version " 1.19.0-rc.2 "
337337}
338338apply (plugin = " info.solidsoft.pitest.aggregator" )
339339
@@ -449,7 +449,7 @@ Starting with this release the configuration required to use PIT with JUnit 5 ha
449449``` groovy
450450plugins {
451451 id 'java'
452- id 'info.solidsoft.pitest' version '1.19.0-rc.1 '
452+ id 'info.solidsoft.pitest' version '1.19.0-rc.2 '
453453}
454454
455455pitest {
@@ -465,7 +465,7 @@ pitest {
465465``` kotlin
466466plugins {
467467 id(" java" )
468- id(" info.solidsoft.pitest" ) version " 1.19.0-rc.1 "
468+ id(" info.solidsoft.pitest" ) version " 1.19.0-rc.2 "
469469}
470470
471471pitest {
@@ -488,7 +488,7 @@ To enable PIT plugins, it is enough to add it to the pitest configuration in the
488488``` groovy
489489plugins {
490490 id 'java'
491- id 'info.solidsoft.pitest' version '1.19.0-rc.1 '
491+ id 'info.solidsoft.pitest' version '1.19.0-rc.2 '
492492}
493493
494494repositories {
@@ -506,7 +506,7 @@ dependencies {
506506``` kotlin
507507plugins {
508508 id(" java" )
509- id(" info.solidsoft.pitest" ) version " 1.19.0-rc.1 "
509+ id(" info.solidsoft.pitest" ) version " 1.19.0-rc.2 "
510510}
511511
512512repositories {
0 commit comments