forked from seedstack/seedstack-maven-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
15 lines (10 loc) · 668 Bytes
/
Copy path.travis.yml
File metadata and controls
15 lines (10 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
sudo: false
language: java
jdk: openjdk11
cache:
directories: "$HOME/.m2/repository"
install:
- echo "<settings><servers><server><id>bintray</id><username>\${env.BINTRAY_USER}</username><password>\${env.BINTRAY_KEY}</password></server></servers></settings>" > ~/.m2/settings.xml
- if [[ $TRAVIS_PULL_REQUEST = false ]] && [[ $TRAVIS_BRANCH = master ]] || [[ $TRAVIS_TAG = v* ]]; then GOAL=deploy; else GOAL=install; fi
- if [[ $TRAVIS_TAG = v* ]]; then ADDITIONAL_PROFILES=release; mvn -q -U install org.seedstack:seedstack-maven-plugin:LATEST:release; else ADDITIONAL_PROFILES=snapshots; fi
script: mvn -q -U -Pbintray,javadoc,$ADDITIONAL_PROFILES $GOAL