You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2018/02/04 12:35:28 UTC

commons-dbutils git commit: travis: also build with java 9

Repository: commons-dbutils
Updated Branches:
  refs/heads/master 30774f171 -> 8d41daf40


travis: also build with java 9


Project: http://git-wip-us.apache.org/repos/asf/commons-dbutils/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbutils/commit/8d41daf4
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbutils/tree/8d41daf4
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbutils/diff/8d41daf4

Branch: refs/heads/master
Commit: 8d41daf4021dde28f2b273c834096621448d78a6
Parents: 30774f1
Author: pascalschumacher <pa...@gmx.net>
Authored: Sun Feb 4 13:35:22 2018 +0100
Committer: pascalschumacher <pa...@gmx.net>
Committed: Sun Feb 4 13:35:22 2018 +0100

----------------------------------------------------------------------
 .travis.yml |  1 +
 pom.xml     | 10 ++++++++++
 2 files changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-dbutils/blob/8d41daf4/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index fc2a03a..cd98d6a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -19,6 +19,7 @@ sudo: false
 jdk:
   - openjdk7
   - oraclejdk8
+  - oraclejdk9
 
 after_success:
   - mvn clean cobertura:cobertura coveralls:report

http://git-wip-us.apache.org/repos/asf/commons-dbutils/blob/8d41daf4/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index a1e7299..08d373c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -358,6 +358,16 @@
         </site>
       </distributionManagement>
     </profile>
+    <profile>
+      <id>java9</id>
+      <activation>
+        <jdk>9</jdk>
+      </activation>
+      <properties>
+        <!-- coverall version 4.3.0 does not work with java 9, see https://github.com/trautonen/coveralls-maven-plugin/issues/112 -->
+        <coveralls.skip>true</coveralls.skip>
+      </properties>
+    </profile>
   </profiles>
 
 </project>