From 981dacd0484304df17fcdaa3bee9f4dcfb73c2a9 Mon Sep 17 00:00:00 2001 From: Jennifer Vendetti Date: Tue, 15 Apr 2014 16:59:33 -0700 Subject: [PATCH] Added .travis.yml file Start testing the protege project with the Travis hosted continuous integration service. --- .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 00000000..07667c52 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: java + +jdk: + - oraclejdk7 + - openjdk7 + +notifications: + email: + recipients: + - vendetti@stanford.edu + on_success: never + on_failure: always + +