Skip to content

Commit f83a7bc

Browse files
authored
fix:PI Mutation plugin update (#54)
1 parent 26ec98d commit f83a7bc

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

build.gradle

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212
id 'jacoco'
1313
id 'pmd'
1414
id 'com.github.ben-manes.versions' version '0.27.0'
15-
id "info.solidsoft.pitest" version '1.3.0'
15+
id "info.solidsoft.pitest" version '1.5.1'
1616
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
1717
id 'org.owasp.dependencycheck' version '5.3.0'
1818
id 'org.sonarqube' version '2.8'
@@ -29,8 +29,6 @@ apply plugin: 'idea'
2929

3030
def versions = [
3131
lombok : '1.18.6',
32-
gradlePitest : '1.3.0',
33-
pitest : '1.4.2',
3432
reformHealthStarter: '0.0.5',
3533
reformLogging : '5.1.0',
3634
reformS2sClient : '3.1.2',
@@ -164,8 +162,8 @@ pitest {
164162
]
165163
threads = 10
166164
enableDefaultIncrementalAnalysis = true
167-
historyInputLocation = ['build/reports/pitest/fastermutationtesting']
168-
historyOutputLocation = ['build/reports/pitest/fastermutationtestingoutput']
165+
historyInputLocation = 'build/reports/pitest/fastermutationtesting'
166+
historyOutputLocation = 'build/reports/pitest/fastermutationtestingoutput'
169167
outputFormats = ['XML', 'HTML']
170168
timestampedReports = true
171169
mutationThreshold = 90
@@ -234,9 +232,6 @@ dependencies {
234232
compile group: 'com.github.ben-manes.caffeine', name: 'caffeine', version: '2.5.6'
235233
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.10.2'
236234
compile group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: '2.10.2'
237-
compile group: 'io.github.openfeign.form', name: 'feign-form', version: '3.8.0'
238-
compile group: 'io.github.openfeign.form', name: 'feign-form-spring', version: '3.8.0'
239-
240235

241236
compile group: 'com.sun.xml.bind', name: 'jaxb-osgi', version: '2.3.3'
242237

@@ -271,8 +266,6 @@ dependencies {
271266
testCompile group: 'org.powermock', name: 'powermock-api-mockito2', version: '2.0.4'
272267
testCompile group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: versions.springBoot
273268

274-
testCompile group: 'org.pitest', name: 'pitest', version: versions.pitest
275-
testCompile 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.3.0'
276269
testCompile 'org.codehaus.sonar-plugins:sonar-pitest-plugin:0.5'
277270

278271
testCompile (group: 'net.serenity-bdd', name: 'serenity-core', version: versions.serenity)

0 commit comments

Comments
 (0)