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 13:07:15 UTC

[1/2] commons-pool git commit: README.md: travis and coveralls badges

Repository: commons-pool
Updated Branches:
  refs/heads/master f4c0d947d -> 30d5db67a


README.md: travis and coveralls badges


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

Branch: refs/heads/master
Commit: b53f66cdaf7cdc452ca9f69f7a0a53f061530b92
Parents: f4c0d94
Author: pascalschumacher <pa...@gmx.net>
Authored: Sun Feb 4 14:05:29 2018 +0100
Committer: pascalschumacher <pa...@gmx.net>
Committed: Sun Feb 4 14:05:29 2018 +0100

----------------------------------------------------------------------
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-pool/blob/b53f66cd/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 7ba539e..15a372a 100644
--- a/README.md
+++ b/README.md
@@ -43,8 +43,8 @@
 Apache Commons Pool
 ===================
 
-[![Build Status](https://travis-ci.org/apache/commons-pool2.svg?branch=master)](https://travis-ci.org/apache/commons-pool2)
-[![Coverage Status](https://coveralls.io/repos/apache/commons-pool2/badge.svg?branch=master)](https://coveralls.io/r/apache/commons-pool2)
+[![Build Status](https://travis-ci.org/apache/commons-pool.svg)](https://travis-ci.org/apache/commons-pool)
+[![Coverage Status](https://coveralls.io/repos/github/apache/commons-pool/badge.svg?branch=master)](https://coveralls.io/github/apache/commons-pool?branch=master)
 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-pool2/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-pool2/)
 [![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
 


[2/2] commons-pool git commit: travis: also build with java 9

Posted by pa...@apache.org.
travis: also build with java 9


Project: http://git-wip-us.apache.org/repos/asf/commons-pool/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-pool/commit/30d5db67
Tree: http://git-wip-us.apache.org/repos/asf/commons-pool/tree/30d5db67
Diff: http://git-wip-us.apache.org/repos/asf/commons-pool/diff/30d5db67

Branch: refs/heads/master
Commit: 30d5db67a2cd0bf3d9a2dd7ffaa7dd247760a9bd
Parents: b53f66c
Author: pascalschumacher <pa...@gmx.net>
Authored: Sun Feb 4 14:07:08 2018 +0100
Committer: pascalschumacher <pa...@gmx.net>
Committed: Sun Feb 4 14:07:08 2018 +0100

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


http://git-wip-us.apache.org/repos/asf/commons-pool/blob/30d5db67/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index e0a9da1..4347192 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -19,6 +19,7 @@ sudo: false
 jdk:
   - openjdk7
   - oraclejdk8
+  - oraclejdk9
 
 script:
   - mvn

http://git-wip-us.apache.org/repos/asf/commons-pool/blob/30d5db67/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 95ebeba..18f1773 100644
--- a/pom.xml
+++ b/pom.xml
@@ -336,6 +336,16 @@
         </plugins>
       </build>
     </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>