@@ -17,7 +17,7 @@ Add gradle-pitest-plugin to the `plugins` configuration in your `build.gradle` f
1717``` groovy
1818plugins {
1919 id 'java' //or 'java-library' - depending on your needs
20- id 'info.solidsoft.pitest' version '1.19.0-rc.2 '
20+ id 'info.solidsoft.pitest' version '1.19.0-rc.3 '
2121}
2222```
2323
@@ -27,7 +27,7 @@ plugins {
2727``` kotlin
2828plugins {
2929 id(" java" ) // or "java-library" - depending on your needs
30- id(" info.solidsoft.pitest" ) version " 1.19.0-rc.2 "
30+ id(" info.solidsoft.pitest" ) version " 1.19.0-rc.3 "
3131}
3232```
3333</details >
@@ -68,7 +68,7 @@ buildscript {
6868 //maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
6969 }
7070 dependencies {
71- classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0-rc.2 '
71+ classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0-rc.3 '
7272 }
7373}
7474```
@@ -86,7 +86,7 @@ buildscript {
8686 // }
8787 }
8888 dependencies {
89- classpath(" info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0-rc.2 " )
89+ classpath(" info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0-rc.3 " )
9090 }
9191}
9292```
@@ -117,7 +117,7 @@ The Pitest plugin does not need to be additionally configured if you use JUnit 4
117117``` groovy
118118pitest {
119119 targetClasses = ['our.base.package.*'] //by default "${project.group}.*"
120- pitestVersion = '1.20.3 ' //not needed when a default PIT version should be used
120+ pitestVersion = '1.22.0 ' //not needed when a default PIT version should be used
121121 threads = 4
122122 outputFormats = ['XML', 'HTML']
123123 timestampedReports = false
@@ -131,7 +131,7 @@ Idiomatic and more portable configuration:
131131``` kotlin
132132pitest {
133133 targetClasses.set(setOf (" our.base.package.*" )) // by default "${project.group}.*"
134- pitestVersion.set(" 1.20.3 " ) // not needed when a default PIT version should be used
134+ pitestVersion.set(" 1.22.0 " ) // not needed when a default PIT version should be used
135135 threads.set(4 )
136136 outputFormats.set(setOf (" XML" , " HTML" ))
137137 timestampedReports.set(false )
@@ -143,7 +143,7 @@ can be used for configuring plugin (instead of the `set()` method):
143143``` kotlin
144144pitest {
145145 targetClasses = setOf (" our.base.package.*" ) // by default "${project.group}.*"
146- pitestVersion = " 1.20.3 " // not needed when a default PIT version should be used
146+ pitestVersion = " 1.22.0 " // not needed when a default PIT version should be used
147147 threads = 4
148148 outputFormats = setOf (" XML" , " HTML" )
149149 timestampedReports = false
@@ -254,7 +254,7 @@ all subprojects which should be processed with PIT. A sample snippet from build.
254254``` groovy
255255//in root project configuration
256256plugins {
257- id 'info.solidsoft.pitest' version '1.19.0-rc.2 ' apply false
257+ id 'info.solidsoft.pitest' version '1.19.0-rc.3 ' apply false
258258}
259259
260260subprojects {
@@ -277,7 +277,7 @@ subprojects {
277277``` kotlin
278278// in root project configuration
279279plugins {
280- id(" info.solidsoft.pitest" ) version " 1.19.0-rc.2 "
280+ id(" info.solidsoft.pitest" ) version " 1.19.0-rc.3 "
281281}
282282
283283subprojects {
@@ -302,7 +302,7 @@ task `pitestReportAggregate`. Root project must be properly configured to use `p
302302``` groovy
303303//in root project configuration
304304plugins {
305- id 'info.solidsoft.pitest' version '1.19.0-rc.2 ' apply false
305+ id 'info.solidsoft.pitest' version '1.19.0-rc.3 ' apply false
306306}
307307
308308apply plugin: 'info.solidsoft.pitest.aggregator' // to 'pitestReportAggregate' appear
@@ -332,7 +332,7 @@ subprojects {
332332``` kotlin
333333// in root project configuration
334334plugins {
335- id(" info.solidsoft.pitest" ) version " 1.19.0-rc.2 "
335+ id(" info.solidsoft.pitest" ) version " 1.19.0-rc.3 "
336336}
337337apply (plugin = " info.solidsoft.pitest.aggregator" )
338338
@@ -448,7 +448,7 @@ Starting with this release the configuration required to use PIT with JUnit 5 ha
448448``` groovy
449449plugins {
450450 id 'java'
451- id 'info.solidsoft.pitest' version '1.19.0-rc.2 '
451+ id 'info.solidsoft.pitest' version '1.19.0-rc.3 '
452452}
453453
454454pitest {
@@ -464,7 +464,7 @@ pitest {
464464``` kotlin
465465plugins {
466466 id(" java" )
467- id(" info.solidsoft.pitest" ) version " 1.19.0-rc.2 "
467+ id(" info.solidsoft.pitest" ) version " 1.19.0-rc.3 "
468468}
469469
470470pitest {
@@ -487,7 +487,7 @@ To enable PIT plugins, it is enough to add it to the pitest configuration in the
487487``` groovy
488488plugins {
489489 id 'java'
490- id 'info.solidsoft.pitest' version '1.19.0-rc.2 '
490+ id 'info.solidsoft.pitest' version '1.19.0-rc.3 '
491491}
492492
493493repositories {
@@ -505,7 +505,7 @@ dependencies {
505505``` kotlin
506506plugins {
507507 id(" java" )
508- id(" info.solidsoft.pitest" ) version " 1.19.0-rc.2 "
508+ id(" info.solidsoft.pitest" ) version " 1.19.0-rc.3 "
509509}
510510
511511repositories {
0 commit comments