File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,10 @@ buildscript {
3
3
mavenCentral()
4
4
}
5
5
dependencies {
6
+ configurations. maybeCreate(' pitest' )
6
7
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
8
10
}
9
11
}
10
12
plugins {
@@ -71,6 +73,8 @@ allprojects {
71
73
evaluationDependsOnChildren()
72
74
73
75
subprojects {
76
+ apply plugin : ' info.solidsoft.pitest'
77
+
74
78
task packageSources(type : Jar ) {
75
79
classifier = ' sources'
76
80
from sourceSets. main. allSource
@@ -145,13 +149,9 @@ subprojects {
145
149
}
146
150
}
147
151
148
- }
149
-
150
- subprojects {
151
- apply plugin : ' info.solidsoft.pitest'
152
-
153
152
pitest {
154
- pitestVersion = ' 1.2.2'
153
+ pitestVersion = ' 1.4.2'
154
+
155
155
timestampedReports = false
156
156
outputFormats = [' XML' , ' HTML' ]
157
157
You can’t perform that action at this time.
0 commit comments