You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.8 KiB
54 lines
2.8 KiB
# Run `travis lint` when changing this file to avoid breaking the build. |
|
# Default JDK is really old: 1.8.0_31; Trusty's is less old: 1.8.0_51 |
|
# https://docs.travis-ci.com/user/ci-environment/#Virtualization-environments |
|
sudo: required |
|
dist: trusty |
|
|
|
cache: |
|
directories: |
|
- $HOME/.m2 |
|
|
|
language: java |
|
|
|
jdk: |
|
- oraclejdk8 |
|
|
|
|
|
before_install: |
|
# Parameters used during release |
|
- git config user.name "$GH_USER" |
|
- git config user.email "$GH_USER_EMAIL" |
|
# setup https authentication credentials, used by ./mvnw release:prepare |
|
- git config credential.helper "store --file=.git/credentials" |
|
- echo "https://$GH_TOKEN:@github.com" > .git/credentials |
|
|
|
install: |
|
# Override default travis to use the maven wrapper |
|
- ./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -B -V |
|
|
|
script: |
|
- ./travis/publish.sh |
|
|
|
# Don't build release tags. This avoids publish conflicts because the version commit exists both on master and the release tag. |
|
# See https://github.com/travis-ci/travis-ci/issues/1532 |
|
branches: |
|
except: |
|
- /^[0-9]/ |
|
|
|
env: |
|
global: |
|
# Ex. travis encrypt BINTRAY_USER=your_github_account |
|
- secure: "VeTOgXwhZLf8uwlnYpB9tuY+NV6kiooRN0FMDoWCXuPPSz/tX2mqmshBXDYsJu0EcRtZb21MkbQwbdJ8Th9K/bvj4sGNK1PrBm9Hmz6e2AvAcxn3ROv86GMTkd7O25OsipTT+/qWrbR3s3lHQxYo5WMsrlEmJ/EF5y5Go5wx90c=" |
|
# Ex. travis encrypt BINTRAY_KEY=xxx-https://bintray.com/profile/edit-xxx --add |
|
- secure: "WND+fjAqpdHArSbXAK7l0dpQLrX0hL/XymV02rhe0pVT1g0J1V32ncqDCVnn/73wTiECTen6y3o1vq3ByIdT9tUErt3o8oEROQsI/cVX9IhvJ/DtcW1lqafXKmQZwDQsifVxhKroW1VuZQbGrKnqVUzfqx5OzxgoNVWpkkxhf50=" |
|
# Ex. travis encrypt GH_USER_EMAIL=for_github@domain.com --add |
|
- secure: "KS/vYN2LZzIiFXVuPoStNG2343Jn7TzTEa3sWBlih075I8TNO1WUlGTzuQH/9xLRZ7wvjXYWQrQmPmA9jXEF6BCmVC3QYZPbXS/CR6L5O3EvFxX0oFE0NkUZ2ZiIIh1uRIjwIVqb715ktHO52XFZjEt69z97YQtS76CvRJtRKFI=" |
|
# Ex. travis encrypt GH_USER=your_github_account --add |
|
- secure: "DW7Q0jChnosR9hBcugAeqfy48VFHRRDPOve1c1XVSmla7VgGgSDlIy8p/vTLEpquWHabRPSbkDisLBPcJxjyXnSx3EobNO8tcQXzQs45aRmcdLrmWOjJpmoNA3wQ6VQX9w9lKoXr6tBVyBuhQfX/QvOls1sRT/bSzstrffhHHv0=" |
|
# Ex. travis encrypt GH_TOKEN=XXX-https://github.com/settings/tokens-XXX --add |
|
- secure: "bXCvr8DvpIbamiiR5XiEqyA6LIQWBmdKCpm0h5M4aUjmfpT18L5PcarxCu147l/yZiituitw4Ywz+nc4j4UKxtz9Oe84ouiDRZ2ynKZhUBOap3RWa7vOJ1Pj9sz20uSvyibX3R2b7lyOlk8PEhVywbhfWb6UE+bqMxQ10lgx6n8=" |
|
# Ex. travis encrypt SONATYPE_USER=your_sonatype_account |
|
- secure: "ONAU76S0WBGcQGf0mr7KxKQjFvhhu73GNuQG8j47pxhJojNlNpWBbu+EGkgaInWKMtO89iBtpicVlXZc06HtbSqv7L93gbMo+xgp5daLlQg4gocDixjB1I2oPPITFFoztu76nOA1IBWRLTKu+w+Y2tKOmzWm+5v2UKD6fz7SYoo=" |
|
# Ex. travis encrypt SONATYPE_PASSWORD=your_sonatype_password |
|
- secure: "UaVTxnw8klS36WLAdcmubqrHIgS4o5NcIqQMPIihk0tv3VEvCJSGvc2b7EPyQZMvm5TR3mXq5IJUAHp8j3seAHfYWmLIZWzvn7Y5mLRw8Kh9up7GzXl8Idui0AEHAAL2mfvE9smlOKPS5D13LKc6tOGFER66itHW3Jg1QoijDmQ=" |
|
|
|
|