-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.travis.yml
More file actions
20 lines (13 loc) · 803 Bytes
/
.travis.yml
File metadata and controls
20 lines (13 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
sudo: false
language: java
jdk: openjdk11
cache:
directories: $HOME/.m2/repository
before_install:
- gpg --fast-import gpg.asc
install:
- echo "<settings><servers><server><id>ossrh</id><username>\${env.SONATYPE_USER}</username><password>\${env.SONATYPE_PASSWORD}</password></server></servers></settings>" > ~/.m2/settings.xml
- if [[ $TRAVIS_PULL_REQUEST = false ]] && [[ $TRAVIS_BRANCH = master || $TRAVIS_BRANCH = dev-* ]] || [[ $TRAVIS_TAG = v* ]]; then GOAL=deploy; else GOAL=install; fi
- if [[ $TRAVIS_TAG = v* ]]; then ADDITIONAL_PROFILES=release; mvn -q -U org.seedstack:seedstack-maven-plugin:release; fi
script: mvn -q -U -Pbuild-number,compatibility,quality,javadoc,$ADDITIONAL_PROFILES $GOAL jacoco:report
after_success: mvn -q coveralls:report -DrepoToken=$COVERALLS_TOKEN