-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy path.travis.yml
15 lines (15 loc) · 1.09 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: java
jdk:
- openjdk7
install:
- curl -L https://github.com/licel/jcardsim/raw/master/jcardsim-3.0.4-SNAPSHOT.jar -o test/lib/jcardsim-3.0.4-SNAPSHOT.jar
script:
- ant -Dtest.build.mock=1 test
after_success:
- curl -L https://search.maven.org/remotecontent?filepath=org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.jar -o test/lib/jacoco.jar
- curl -L https://search.maven.org/remotecontent?filepath=org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.jar -o test/lib/jacocoant.jar
- curl -L https://search.maven.org/remotecontent?filepath=org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.jar -o test/lib/jacocoagent.jar
- curl -L https://search.maven.org/remotecontent?filepath=org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.jar -o test/lib/jacocoreport.jar
- curl -L https://search.maven.org/remotecontent?filepath=org/ow2/asm/asm-debug-all/5.0.3/asm-debug-all-5.0.3.jar -o test/lib/asm-debug-all.jar
- ant -Dtest.build.mock=1 coverage
- mvn coveralls:report