Author: bodewig
Date: Fri Dec 23 08:46:00 2016
New Revision: 1775800
URL: http://svn.apache.org/viewvc?rev=1775800&view=rev
Log:
make japicmp's breakBuildOnBinaryIncompatibleModifications configurable
Modified:
commons/proper/commons-parent/trunk/pom.xml
Modified: commons/proper/commons-parent/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/pom.xml?rev=1775800&r1=1775799&r2=1775800&view=diff
==============================================================================
--- commons/proper/commons-parent/trunk/pom.xml (original)
+++ commons/proper/commons-parent/trunk/pom.xml Fri Dec 23 08:46:00 2016
@@ -48,6 +48,9 @@ Version 42:
- maven-compiler-plugin : 3.5.1 -> 3.6.0
- japicmp plugin no longer fail on "mvn site" (it requires
target/*jar), use "mvn package site -Pjapicmp" to include its report
+- commons.japicmp.breakBuildOnBinaryIncompatibleModifications can be
+ used to override the breakBuildOnBinaryIncompatibleModifications
+ setting of the japicmp plugin (default is true)
-->
<!--
Version 41:
@@ -382,7 +385,7 @@ Version 39:
<configuration>
<parameter>
<onlyModified>true</onlyModified>
-
<breakBuildOnBinaryIncompatibleModifications>true</breakBuildOnBinaryIncompatibleModifications>
+
<breakBuildOnBinaryIncompatibleModifications>${commons.japicmp.breakBuildOnBinaryIncompatibleModifications}</breakBuildOnBinaryIncompatibleModifications>
<!-- skip japicmp on "mvn site" - use "mvn package site" to
include report -->
<ignoreMissingNewVersion />
<reportOnlyFilename>true</reportOnlyFilename>
@@ -1673,6 +1676,10 @@ Version 39:
<commons.scmPubCheckoutDirectory>${commons.site.cache}/${commons.site.path}</commons.scmPubCheckoutDirectory>
<commons.scmPubServer>commons.site</commons.scmPubServer>
+ <!-- allow japicmp's breakBuildOnBinaryIncompatibleModifications
+ to be overridden, plugin's default is false -->
+
<commons.japicmp.breakBuildOnBinaryIncompatibleModifications>true</commons.japicmp.breakBuildOnBinaryIncompatibleModifications>
+
<sonar.host.url>https://analysis.apache.org/</sonar.host.url>
</properties>