You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2017/06/09 07:12:57 UTC

commons-cli git commit: Use travis-jacoco profile from parent pom to fix failing coveralls build

Repository: commons-cli
Updated Branches:
  refs/heads/master c1c2add83 -> e588581b8


Use travis-jacoco profile from parent pom to fix failing coveralls build


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

Branch: refs/heads/master
Commit: e588581b83688ac2c678ccb403fafd104d63496a
Parents: c1c2add
Author: Benedikt Ritter <br...@apache.org>
Authored: Fri Jun 9 09:12:52 2017 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Fri Jun 9 09:12:52 2017 +0200

----------------------------------------------------------------------
 .travis.yml |  2 +-
 pom.xml     | 19 -------------------
 2 files changed, 1 insertion(+), 20 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-cli/blob/e588581b/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 1f8222f..65d0716 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -22,4 +22,4 @@ jdk:
   - oraclejdk8
 
 after_success:
-  - mvn clean test jacoco:report coveralls:report
+  - mvn clean test jacoco:report coveralls:report -Ptravis-jacoco

http://git-wip-us.apache.org/repos/asf/commons-cli/blob/e588581b/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 3eaacd3..b16209e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -330,25 +330,6 @@
         </plugins>
       </build>
     </profile>
-
-    <profile>
-      <id>travis</id>
-      <activation>
-        <property>
-          <name>env.TRAVIS</name>
-          <value>true</value>
-        </property>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.eluder.coveralls</groupId>
-            <artifactId>coveralls-maven-plugin</artifactId>
-            <version>4.3.0</version>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
   </profiles>
 
 </project>