Add binary compatibility check to Maven default goal (#555)
* add bc detect as discussed in mailing list. * add bc detect as discussed in mailing list.
This commit is contained in:
parent
7f90306f90
commit
cf0778a5ad
6
pom.xml
6
pom.xml
|
@ -615,8 +615,8 @@
|
||||||
<commons.surefire.version>3.0.0-M4</commons.surefire.version>
|
<commons.surefire.version>3.0.0-M4</commons.surefire.version>
|
||||||
<commons.javadoc.version>3.1.1</commons.javadoc.version>
|
<commons.javadoc.version>3.1.1</commons.javadoc.version>
|
||||||
|
|
||||||
<!-- generate report even if there are binary incompatible changes -->
|
<!-- never generate report if there are binary incompatible changes -->
|
||||||
<commons.japicmp.breakBuildOnBinaryIncompatibleModifications>false</commons.japicmp.breakBuildOnBinaryIncompatibleModifications>
|
<commons.japicmp.breakBuildOnBinaryIncompatibleModifications>true</commons.japicmp.breakBuildOnBinaryIncompatibleModifications>
|
||||||
<commons.japicmp.version>0.14.3</commons.japicmp.version>
|
<commons.japicmp.version>0.14.3</commons.japicmp.version>
|
||||||
|
|
||||||
<!-- Commons Release Plugin -->
|
<!-- Commons Release Plugin -->
|
||||||
|
@ -630,7 +630,7 @@
|
||||||
|
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<defaultGoal>clean verify apache-rat:check clirr:check checkstyle:check spotbugs:check javadoc:javadoc</defaultGoal>
|
<defaultGoal>clean verify apache-rat:check checkstyle:check japicmp:cmp spotbugs:check javadoc:javadoc</defaultGoal>
|
||||||
<pluginManagement>
|
<pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|
Loading…
Reference in New Issue