-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.travis.yml
More file actions
32 lines (26 loc) · 790 Bytes
/
.travis.yml
File metadata and controls
32 lines (26 loc) · 790 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
sudo: false
cache:
directories:
- $HOME/.m2
matrix:
include:
- os: linux
dist: precise
jdk: oraclejdk7
- os: linux
dist: trusty
jdk: oraclejdk8
- os: linux
dist: trusty
jdk: oraclejdk9
addons:
sonarcloud:
organization: "sangupta-github" # the key of the org you chose at step #3
token:
secure: "EavjxKCEMJS5bjgk60juMS6bG8cF30niSHBavYEFqMzX1xraWMrIvNfdZrNafMFMoA7ltuL2Y3g5pTTEyw5m+nzwxscL2C3T6pQFnm9fWbObMl9YMVT9KrEar2PKY3bx5t7ITgU4Xsy1XA0H5jmMsRyu5BSSKXNcjgxjK3Bh+H4="
after_success:
- mvn clean test jacoco:report coveralls:report
# script:
# # other script steps might be done before running the actual analysis
# - mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent install sonar:sonar