Skip to content

Commit 5b506b3

Browse files
committed
Fix pitest configuration
1 parent 3b2826e commit 5b506b3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ buildscript {
33
mavenCentral()
44
}
55
dependencies {
6+
configurations.maybeCreate('pitest')
67
classpath 'com.cinnober.gradle:semver-git:2.3.1'
7-
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.1.11'
8+
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.3.0'
9+
pitest 'org.pitest:pitest-command-line:1.4.2' // Transitive dependency from pitest plugin
810
}
911
}
1012
plugins {
@@ -71,6 +73,8 @@ allprojects {
7173
evaluationDependsOnChildren()
7274

7375
subprojects {
76+
apply plugin: 'info.solidsoft.pitest'
77+
7478
task packageSources(type: Jar) {
7579
classifier = 'sources'
7680
from sourceSets.main.allSource
@@ -145,13 +149,9 @@ subprojects {
145149
}
146150
}
147151

148-
}
149-
150-
subprojects {
151-
apply plugin: 'info.solidsoft.pitest'
152-
153152
pitest {
154-
pitestVersion = '1.2.2'
153+
pitestVersion = '1.4.2'
154+
155155
timestampedReports = false
156156
outputFormats = ['XML', 'HTML']
157157

0 commit comments

Comments
 (0)