mirror of
https://gitee.com/fujieid/jap.git
synced 2024-11-29 18:17:34 +08:00
14 lines
337 B
YAML
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)
|