diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..d47c67d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +# don't build "feature" branches +branches: + only: + - "master" +# obviously this is java +language: java + +os: linux +dist: trusty +jdk: + - oraclejdk8 + +script: + - mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V