File tree Expand file tree Collapse file tree 21 files changed +152
-0
lines changed Expand file tree Collapse file tree 21 files changed +152
-0
lines changed Original file line number Diff line number Diff line change 1
1
apply plugin : ' java-library'
2
2
apply plugin : ' biz.aQute.bnd.builder'
3
+ apply plugin : ' info.solidsoft.pitest'
3
4
4
5
description = ' Trellis Basic Auth'
5
6
@@ -25,3 +26,9 @@ dependencies {
25
26
testImplementation " org.mockito:mockito-core:$mockitoVersion "
26
27
}
27
28
29
+ pitest {
30
+ testPlugin = ' junit5'
31
+ pitestVersion = pitestToolVersion
32
+ threads = 4
33
+ }
34
+
Original file line number Diff line number Diff line change 1
1
apply plugin : ' java-library'
2
2
apply plugin : ' biz.aQute.bnd.builder'
3
+ apply plugin : ' info.solidsoft.pitest'
3
4
4
5
description = ' Trellis Microprofile JWT-Auth'
5
6
@@ -33,6 +34,12 @@ dependencies {
33
34
testRuntimeOnly " ch.qos.logback:logback-classic:$logbackVersion "
34
35
}
35
36
37
+ pitest {
38
+ testPlugin = ' junit5'
39
+ pitestVersion = pitestToolVersion
40
+ threads = 4
41
+ }
42
+
36
43
if (project. sourceCompatibility. isJava11Compatible()) {
37
44
test {
38
45
inputs. property(" moduleName" , moduleName)
Original file line number Diff line number Diff line change 1
1
apply plugin : ' java-library'
2
2
apply plugin : ' biz.aQute.bnd.builder'
3
+ apply plugin : ' info.solidsoft.pitest'
3
4
4
5
description = ' Trellis OAuth'
5
6
@@ -29,3 +30,10 @@ dependencies {
29
30
testImplementation " org.glassfish.jersey.core:jersey-server:$jerseyVersion "
30
31
testImplementation " org.mockito:mockito-core:$mockitoVersion "
31
32
}
33
+
34
+ pitest {
35
+ testPlugin = ' junit5'
36
+ pitestVersion = pitestToolVersion
37
+ threads = 4
38
+ }
39
+
Original file line number Diff line number Diff line change
1
+ buildscript {
2
+ repositories {
3
+ mavenCentral()
4
+ }
5
+ configurations. maybeCreate(' pitest' )
6
+ dependencies {
7
+ classpath " info.solidsoft.gradle.pitest:gradle-pitest-plugin:$pitestVersion "
8
+ pitest " org.pitest:pitest-junit5-plugin:$pitestJunit5Version "
9
+ }
10
+ }
11
+
1
12
plugins {
2
13
id ' com.github.ben-manes.versions' version " $versionsVersion "
3
14
id ' com.github.hierynomus.license' version " $licenseVersion "
Original file line number Diff line number Diff line change 1
1
apply plugin : ' java-library'
2
2
apply plugin : ' biz.aQute.bnd.builder'
3
+ apply plugin : ' info.solidsoft.pitest'
3
4
4
5
description = ' Trellis Application'
5
6
@@ -34,6 +35,12 @@ dependencies {
34
35
testImplementation project(' :trellis-audit' )
35
36
}
36
37
38
+ pitest {
39
+ testPlugin = ' junit5'
40
+ pitestVersion = pitestToolVersion
41
+ threads = 4
42
+ }
43
+
37
44
if (project. sourceCompatibility. isJava11Compatible()) {
38
45
test {
39
46
inputs. property(" moduleName" , moduleName)
Original file line number Diff line number Diff line change 1
1
apply plugin : ' java-library'
2
2
apply plugin : ' biz.aQute.bnd.builder'
3
+ apply plugin : ' info.solidsoft.pitest'
3
4
4
5
description = ' Trellis Audit'
5
6
@@ -16,3 +17,10 @@ dependencies {
16
17
testImplementation " org.mockito:mockito-core:$mockitoVersion "
17
18
testImplementation " org.apache.commons:commons-rdf-simple:$commonsRdfVersion "
18
19
}
20
+
21
+ pitest {
22
+ testPlugin = ' junit5'
23
+ pitestVersion = pitestToolVersion
24
+ threads = 4
25
+ }
26
+
Original file line number Diff line number Diff line change 1
1
apply plugin : ' java-library'
2
2
apply plugin : ' biz.aQute.bnd.builder'
3
+ apply plugin : ' info.solidsoft.pitest'
3
4
4
5
description = " Trellis Cache Implementation"
5
6
@@ -14,3 +15,9 @@ dependencies {
14
15
testImplementation " org.mockito:mockito-core:$mockitoVersion "
15
16
}
16
17
18
+ pitest {
19
+ testPlugin = ' junit5'
20
+ pitestVersion = pitestToolVersion
21
+ threads = 4
22
+ }
23
+
Original file line number Diff line number Diff line change 1
1
apply plugin : ' java-library'
2
2
apply plugin : ' biz.aQute.bnd.builder'
3
+ apply plugin : ' info.solidsoft.pitest'
3
4
4
5
description = ' Trellis CDI component'
5
6
@@ -26,6 +27,12 @@ dependencies {
26
27
testImplementation project(' :trellis-constraint-rules' )
27
28
}
28
29
30
+ pitest {
31
+ testPlugin = ' junit5'
32
+ pitestVersion = pitestToolVersion
33
+ threads = 4
34
+ }
35
+
29
36
if (project. sourceCompatibility. isJava11Compatible()) {
30
37
test {
31
38
inputs. property(" moduleName" , moduleName)
Original file line number Diff line number Diff line change 1
1
apply plugin : ' java-library'
2
2
apply plugin : ' biz.aQute.bnd.builder'
3
+ apply plugin : ' info.solidsoft.pitest'
3
4
4
5
description = ' Trellis Constraint Rules'
5
6
@@ -21,3 +22,10 @@ dependencies {
21
22
testImplementation " ch.qos.logback:logback-classic:$logbackVersion "
22
23
testImplementation " org.mockito:mockito-core:$mockitoVersion "
23
24
}
25
+
26
+ pitest {
27
+ testPlugin = ' junit5'
28
+ pitestVersion = pitestToolVersion
29
+ threads = 4
30
+ }
31
+
Original file line number Diff line number Diff line change 1
1
apply plugin : ' java-library'
2
2
apply plugin : ' biz.aQute.bnd.builder'
3
+ apply plugin : ' info.solidsoft.pitest'
3
4
4
5
description = ' Trellis File'
5
6
@@ -29,3 +30,9 @@ dependencies {
29
30
testImplementation " io.smallrye:smallrye-config:$smallryeConfigVersion "
30
31
}
31
32
33
+ pitest {
34
+ testPlugin = ' junit5'
35
+ pitestVersion = pitestToolVersion
36
+ threads = 4
37
+ }
38
+
You can’t perform that action at this time.
0 commit comments