Create .travis.yml
authorGayan Weerakutti <gayanW@users.noreply.github.com>
Wed, 7 Mar 2018 18:46:02 +0000 (00:16 +0530)
committerGayan Weerakutti <gayan@linuxdeveloper.space>
Tue, 17 Apr 2018 14:49:07 +0000 (20:19 +0530)
Add Travis CI config file to automatically build against OracleJDK8, OpenJDK8.

.travis.yml [new file with mode: 0644]

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..698895c
--- /dev/null
@@ -0,0 +1,11 @@
+language: java
+before_install:
+  - sudo apt-get install junit4
+  - mkdir ~/junit
+  - ln -s /usr/share/java/junit4.jar ~/junit
+  - ln -s /usr/share/java/hamcrest-core.jar ~/junit
+  - export JUNIT_HOME=~/junit
+install: ant test
+jdk:
+  - oraclejdk8
+  - openjdk8