@@ -17,7 +17,7 @@ Add gradle-pitest-plugin to the `plugins` configuration in your `build.gradle` f
1717
1818``` groovy
1919plugins {
20- id 'info.solidsoft.pitest' version '1.7.4 '
20+ id 'info.solidsoft.pitest' version '1.9.0 '
2121}
2222```
2323
@@ -47,7 +47,7 @@ buildscript {
4747 //maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
4848 }
4949 dependencies {
50- classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.7.4 '
50+ classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.9.0 '
5151 }
5252}
5353```
@@ -67,7 +67,7 @@ The Pitest plugin does not need to be additionally configured if you use JUnit 4
6767``` groovy
6868pitest {
6969 targetClasses = ['our.base.package.*'] //by default "${project.group}.*"
70- pitestVersion = '1.7.4 ' //not needed when a default PIT version should be used
70+ pitestVersion = '1.9.0 ' //not needed when a default PIT version should be used
7171 threads = 4
7272 outputFormats = ['XML', 'HTML']
7373 timestampedReports = false
@@ -152,7 +152,7 @@ buildscript {
152152 mavenCentral()
153153 }
154154 dependencies {
155- classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.7.4 '
155+ classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.9.0 '
156156 }
157157}
158158
@@ -179,7 +179,7 @@ buildscript {
179179 mavenCentral()
180180 }
181181 dependencies {
182- classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.7.4 '
182+ classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.9.0 '
183183 }
184184}
185185
@@ -253,7 +253,7 @@ Starting with this release the configuration required to use PIT with JUnit 5 ha
253253``` groovy
254254plugins {
255255 id 'java'
256- id 'info.solidsoft.pitest' version '1.7.4 '
256+ id 'info.solidsoft.pitest' version '1.9.0 '
257257}
258258
259259pitest {
@@ -276,7 +276,7 @@ To enable PIT plugins, it is enough to add it to the pitest configuration in the
276276``` groovy
277277plugins {
278278 id 'java'
279- id 'info.solidsoft.pitest' version '1.7.4 '
279+ id 'info.solidsoft.pitest' version '1.9.0 '
280280}
281281
282282repositories {
0 commit comments