Created
March 30, 2018 14:27
-
-
Save danylkaaa/ce02d718b0ab585eacaf1c969b26a340 to your computer and use it in GitHub Desktop.
.travis.yml java maven
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: java | |
sudo: false # faster builds | |
install: | |
- mvn install -DskipTests=true -Dmaven.javadoc.skip=false -B -V | |
script: | |
- mvn cobertura:cobertura | |
after_success: | |
- mvn clean cobertura:cobertura coveralls:cobertura | |
- bash <(curl -s https://codecov.io/bash) | |
# - mvn site -X |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment