From eed9e29282dff996269e3cc8b2267d68881c60a2 Mon Sep 17 00:00:00 2001 From: Robert Colton Date: Fri, 11 Dec 2020 07:55:02 -0500 Subject: [PATCH] Create .travis.yml --- .travis.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .travis.yml 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