AcidIsland/.travis.yml

22 lines
513 B
YAML
Raw Normal View History

2019-03-10 07:36:38 +01:00
language: java
sudo: false
addons:
sonarcloud:
organization: "tastybento-github"
token:
secure: $SONAR_TOKEN
branches:
- develop
- master
jdk:
- openjdk8
script:
2019-05-05 08:27:56 +02:00
# JaCoCo is used to have code coverage, the agent has to be activated
- mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent org.jacoco:jacoco-maven-plugin:report package sonar:sonar
2019-03-10 07:36:38 +01:00
cache:
directories:
- '$HOME/.m2/repository'
- '$HOME/.sonar/cache'