jap/.travis.yml
yadong.zhang 0044fe4a06 👌 .travis.yml
2021-02-18 13:35:17 +08:00

14 lines
337 B
YAML

language: java
# Cobertura is not supported in JDK11 so you must downgrade the JDK that Travis uses if you want to use Cobertura with Travis.
# https://github.com/cobertura/cobertura/issues/381
jdk:
- openjdk8
sudo: false # faster builds
script: "mvn cobertura:cobertura"
after_success:
- bash <(curl -s https://codecov.io/bash)