get japicmp working
Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/328e7444 Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/328e7444 Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/328e7444 Branch: refs/heads/master Commit: 328e74448c90c18b0539e7aacfa48e67de11d826 Parents: 14e7f8d Author: Rob Tompkins <chtom...@gmail.com> Authored: Tue Aug 14 22:42:58 2018 -0400 Committer: Rob Tompkins <chtom...@gmail.com> Committed: Tue Aug 14 22:42:58 2018 -0400 ---------------------------------------------------------------------- pom.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-lang/blob/328e7444/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index f08ab94..4e78f42 100644 --- a/pom.xml +++ b/pom.xml @@ -589,11 +589,16 @@ <commons.encoding>utf-8</commons.encoding> <checkstyle.plugin.version>3.0.0</checkstyle.plugin.version> + <japicmp.skip>false</japicmp.skip> <!-- JMH Benchmark related properties, version, target compiler and name of the benchmarking uber jar. --> <jmh.version>1.21</jmh.version> <uberjar.name>benchmarks</uberjar.name> + <!-- generate report even if there are binary incompatible changes --> + <commons.japicmp.breakBuildOnBinaryIncompatibleModifications>false</commons.japicmp.breakBuildOnBinaryIncompatibleModifications> + <!-- 0.12.0 dies with a NullPointerException --> + <commons.japicmp.version>0.11.1</commons.japicmp.version> <!-- Commons Release Plugin --> <commons.bc.version>3.7</commons.bc.version> @@ -622,6 +627,14 @@ </excludes> </configuration> </plugin> + <!-- override skip property of parent pom --> + <plugin> + <groupId>com.github.siom79.japicmp</groupId> + <artifactId>japicmp-maven-plugin</artifactId> + <configuration> + <skip>false</skip> + </configuration> + </plugin> </plugins> </pluginManagement> <plugins>