Repository: commons-compress Updated Branches: refs/heads/master 35891d3b3 -> cd6de3a5a
embrace parent 42 Project: http://git-wip-us.apache.org/repos/asf/commons-compress/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-compress/commit/cd6de3a5 Tree: http://git-wip-us.apache.org/repos/asf/commons-compress/tree/cd6de3a5 Diff: http://git-wip-us.apache.org/repos/asf/commons-compress/diff/cd6de3a5 Branch: refs/heads/master Commit: cd6de3a5a096bde2da7f94c97b081a631a376b8e Parents: 35891d3 Author: Stefan Bodewig <bode...@apache.org> Authored: Thu Dec 29 18:57:37 2016 +0100 Committer: Stefan Bodewig <bode...@apache.org> Committed: Thu Dec 29 18:57:37 2016 +0100 ---------------------------------------------------------------------- .travis.yml | 2 +- pom.xml | 45 ++++----------------------------------------- 2 files changed, 5 insertions(+), 42 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-compress/blob/cd6de3a5/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index 151942a..21f739b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,4 +21,4 @@ jdk: - oraclejdk8 after_success: - - mvn clean apache-rat:check test jacoco:report coveralls:report -Ptravis + - mvn clean apache-rat:check test jacoco:report coveralls:report -Ptravis-jacoco http://git-wip-us.apache.org/repos/asf/commons-compress/blob/cd6de3a5/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 2a54c64..bb77018 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ <parent> <groupId>org.apache.commons</groupId> <artifactId>commons-parent</artifactId> - <version>41</version> + <version>42</version> </parent> <groupId>org.apache.commons</groupId> @@ -47,10 +47,12 @@ jar, tar, zip, dump, 7z, arj. <commons.rc.version>RC1</commons.rc.version> <powermock.version>1.6.4</powermock.version> <commons.pmd-plugin.version>3.7</commons.pmd-plugin.version> - <commons.japicmp.version>0.9.3</commons.japicmp.version> <!-- only show issues of the current version --> <commons.changes.onlyCurrentVersion>true</commons.changes.onlyCurrentVersion> + + <!-- generate report even if there are binary incompatible changes --> + <commons.japicmp.breakBuildOnBinaryIncompatibleModifications>false</commons.japicmp.breakBuildOnBinaryIncompatibleModifications> </properties> <issueManagement> @@ -212,17 +214,6 @@ jar, tar, zip, dump, 7z, arj. </excludes> </configuration> </plugin> - <plugin> - <groupId>com.github.siom79.japicmp</groupId> - <artifactId>japicmp-maven-plugin</artifactId> - <version>${commons.japicmp.version}</version> - <configuration> - <parameter> - <onlyModified>true</onlyModified> - <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications> - </parameter> - </configuration> - </plugin> </plugins> </pluginManagement> <plugins> @@ -386,34 +377,6 @@ jar, tar, zip, dump, 7z, arj. </plugins> </build> </profile> - <!-- can be removed in favor of commons-parent's travis-jacoco - profile once parent 42 has been released --> - <profile> - <id>travis</id> - <activation> - <property> - <name>env.TRAVIS</name> - <value>true</value> - </property> - </activation> - <build> - <plugins> - <plugin> - <groupId>org.jacoco</groupId> - <artifactId>jacoco-maven-plugin</artifactId> - <version>${commons.jacoco.version}</version> - </plugin> - <plugin> - <groupId>org.eluder.coveralls</groupId> - <artifactId>coveralls-maven-plugin</artifactId> - <version>4.3.0</version> - <configuration> - <timestampFormat>EpochMillis</timestampFormat> - </configuration> - </plugin> - </plugins> - </build> - </profile> </profiles> </project>