-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.scrutinizer.yml
43 lines (40 loc) · 1.82 KB
/
.scrutinizer.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
build:
nodes:
analysis:
dependencies:
override:
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true -Dcheckstyle.skip -B -V
tests:
environment:
java: 'java-8-oracle'
timezone: FR
dependencies:
override:
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true -Dcheckstyle.skip -B -V
tests:
override:
- command: mvn test -pl arakne-encoding
coverage:
file: 'arakne-encoding/target/site/jacoco/jacoco.xml'
format: 'jacoco'
- command: mvn checkstyle:checkstyle -pl arakne-encoding
analysis:
file: 'arakne-encoding/target/checkstyle-result.xml'
format: 'general-checkstyle'
- command: mvn test -pl arakne-value
coverage:
file: 'arakne-value/target/site/jacoco/jacoco.xml'
format: 'jacoco'
- command: mvn checkstyle:checkstyle -pl arakne-value
analysis:
file: 'arakne-value/target/checkstyle-result.xml'
format: 'general-checkstyle'
- command: mvn test -pl arakne-map
coverage:
file: 'arakne-map/target/site/jacoco/jacoco.xml'
format: 'jacoco'
- command: mvn checkstyle:checkstyle -pl arakne-map
analysis:
file: 'arakne-map/target/checkstyle-result.xml'
format: 'general-checkstyle'
- command: mvn pitest:mutationCoverage