-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
30 lines (25 loc) · 877 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
language: java
jdk: openjdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
- $HOME/.sonar/cache
- $HOME/.cache
- $HOME/.m2
addons:
sonarcloud:
organization: "jukusoft"
#jukusoft, juku-github
script:
- mvn clean install -DskipTests=true -Dmaven.javadoc.skip=true -Dgpg.skip=true -B -V
# - mvn clean verify
# - mvn clean install
- mvn -e clean org.jacoco:jacoco-maven-plugin:prepare-agent install -Dgpg.skip=true sonar:sonar -Dsonar.login=${SONAR_TOKEN}
# - mvn cobertura:cobertura
- curl -X POST https://api.poeditor.com/v2/projects/upload -F api_token="${POEDITOR_API_TOKEN}" -F id="214535" -F updating="terms" -F language="en" -F file=@"lang/messages.pot"
notifications:
email: false