You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by eb...@apache.org on 2015/12/08 14:51:45 UTC

svn commit: r1718608 - /commons/proper/jexl/trunk/.travis.yml

Author: ebourg
Date: Tue Dec  8 13:51:45 2015
New Revision: 1718608

URL: http://svn.apache.org/viewvc?rev=1718608&view=rev
Log:
Add travis configuration

Added:
    commons/proper/jexl/trunk/.travis.yml

Added: commons/proper/jexl/trunk/.travis.yml
URL: http://svn.apache.org/viewvc/commons/proper/jexl/trunk/.travis.yml?rev=1718608&view=auto
==============================================================================
--- commons/proper/jexl/trunk/.travis.yml (added)
+++ commons/proper/jexl/trunk/.travis.yml Tue Dec  8 13:51:45 2015
@@ -0,0 +1,15 @@
+language: java
+sudo: false
+
+jdk:
+  - openjdk6
+  - openjdk7
+  - oraclejdk8
+
+# only build trunk
+branches:
+  only:
+    - trunk
+
+after_success:
+  - mvn clean test jacoco:report coveralls:report