You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2018/04/18 21:44:49 UTC

svn commit: r1829485 - /commons/proper/commons-parent/trunk/pom.xml

Author: ggregory
Date: Wed Apr 18 21:44:49 2018
New Revision: 1829485

URL: http://svn.apache.org/viewvc?rev=1829485&view=rev
Log:
Allows JApiCmp's ignoreMissingClasses parameter to be easily overridable with the property commons.japicmp.ignoreMissingClasses.

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=1829485&r1=1829484&r2=1829485&view=diff
==============================================================================
--- commons/proper/commons-parent/trunk/pom.xml (original)
+++ commons/proper/commons-parent/trunk/pom.xml Wed Apr 18 21:44:49 2018
@@ -42,6 +42,7 @@
     
     - Set the version of Apache Commons BCEL used by maven-project-info-reports-plugin to avoid 
       "org.apache.bcel.classfile.ClassFormatException: Invalid byte tag in constant pool: 19"
+    - Allows JApiCmp's ignoreMissingClasses parameter to be easily overridable with the property commons.japicmp.ignoreMissingClasses.
       
   -->
   
@@ -465,6 +466,7 @@
               <ignoreMissingNewVersion>true</ignoreMissingNewVersion>
               <reportOnlyFilename>true</reportOnlyFilename>
               <skipPomModules>true</skipPomModules>
+              <ignoreMissingClasses>${commons.japicmp.ignoreMissingClasses}</ignoreMissingClasses>
             </parameter>
           </configuration>
         </plugin>
@@ -1901,6 +1903,7 @@
     <!-- allow japicmp's breakBuildOnBinaryIncompatibleModifications
       to be overridden, plugin's default is false -->
     <commons.japicmp.breakBuildOnBinaryIncompatibleModifications>true</commons.japicmp.breakBuildOnBinaryIncompatibleModifications>
+    <commons.japicmp.ignoreMissingClasses>false</commons.japicmp.ignoreMissingClasses>    
 
     <sonar.host.url>https://analysis.apache.org/</sonar.host.url>