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.
28 lines
417 B
28 lines
417 B
language: java
|
|
|
|
jdk:
|
|
- openjdk8
|
|
- openjdk9
|
|
- openjdk10
|
|
- openjdk11
|
|
- openjdk-ea
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- jdk: openjdk-ea
|
|
|
|
# see https://github.com/travis-ci/travis-ci/issues/8408
|
|
before_install:
|
|
- unset _JAVA_OPTIONS
|
|
|
|
# use travis-ci docker based infrastructure
|
|
sudo: false
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.m2
|
|
|
|
script:
|
|
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
|
|
- mvn test -B
|