-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy path.travis.yml
More file actions
32 lines (25 loc) · 542 Bytes
/
.travis.yml
File metadata and controls
32 lines (25 loc) · 542 Bytes
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
language: java
addons:
sonarcloud:
organization: "blackdread-github"
# Token provided by travis
# token:
# secure: ""
jdk:
# - oraclejdk8
# - oraclejdk11
# - openjdk8
- openjdk11
before_install:
- chmod +x mvnw
after_success:
#- mvn clean test
# - mvn clean test jacoco:report
- mvn clean test jacoco:report coveralls:report
- mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent package sonar:sonar
#notifications:
# email:
# - yoann.caplain@blackdread.org
cache:
directories:
- $HOME/.m2