You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ch...@apache.org on 2018/03/07 14:40:16 UTC

svn commit: r1826113 - in /commons/proper/commons-parent/trunk: RELEASE-NOTES.txt pom.xml src/changes/changes.xml

Author: chtompki
Date: Wed Mar  7 14:40:16 2018
New Revision: 1826113

URL: http://svn.apache.org/viewvc?rev=1826113&view=rev
Log:
Adding japicmp newVersion to declartion

Modified:
    commons/proper/commons-parent/trunk/RELEASE-NOTES.txt
    commons/proper/commons-parent/trunk/pom.xml
    commons/proper/commons-parent/trunk/src/changes/changes.xml

Modified: commons/proper/commons-parent/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/RELEASE-NOTES.txt?rev=1826113&r1=1826112&r2=1826113&view=diff
==============================================================================
--- commons/proper/commons-parent/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/commons-parent/trunk/RELEASE-NOTES.txt Wed Mar  7 14:40:16 2018
@@ -24,7 +24,8 @@ o Fix japicmp config: add to reporting s
 o org.apache:apache 18 -> 19
 o maven-surefire-plugin 2.20.1 -> 2.21.0
 o maven-failsafe-plugin 2.20.1 -> 2.21.0
-o add "commons.japicmp.skip" = "true" parameter for japicmp. Which should be overridden.
+o add "commons.japicmp.skip" = "true" parameter for japicmp. Which should be overridden
+o add newVersion of the current artifact to japicmp configuration
 
 
 Historical list of changes: http://commons.apache.org/commons-parent-pom.htmlchanges-report.html

Modified: commons/proper/commons-parent/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/pom.xml?rev=1826113&r1=1826112&r2=1826113&view=diff
==============================================================================
--- commons/proper/commons-parent/trunk/pom.xml (original)
+++ commons/proper/commons-parent/trunk/pom.xml Wed Mar  7 14:40:16 2018
@@ -56,6 +56,7 @@
     - maven-surefire-plugin 2.20.1 -> 2.21.0
     - maven-failsafe-plugin 2.20.1 -> 2.21.0
     - add "commons.japicmp.skip" = "true" parameter for japicmp. Which should be overridden.
+    - add newVersion of the current artifact to japicmp configuration
 
   -->
 
@@ -439,6 +440,14 @@
               <ignoreMissingNewVersion>true</ignoreMissingNewVersion>
               <reportOnlyFilename>true</reportOnlyFilename>
             </parameter>
+            <newVersion>
+              <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>${project.artifactId}</artifactId>
+                <version>${project.version}</version>
+                <type>${project.packaging}</type>
+              </dependency>
+            </newVersion>
             <skip>${commons.japicmp.skip}</skip>
           </configuration>
         </plugin>
@@ -975,6 +984,14 @@
             <ignoreMissingNewVersion>true</ignoreMissingNewVersion>
             <reportOnlyFilename>true</reportOnlyFilename>
           </parameter>
+          <newVersion>
+            <dependency>
+              <groupId>${project.groupId}</groupId>
+              <artifactId>${project.artifactId}</artifactId>
+              <version>${project.version}</version>
+              <type>${project.packaging}</type>
+            </dependency>
+          </newVersion>
           <skip>${commons.japicmp.skip}</skip>
         </configuration>
       </plugin>

Modified: commons/proper/commons-parent/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/src/changes/changes.xml?rev=1826113&r1=1826112&r2=1826113&view=diff
==============================================================================
--- commons/proper/commons-parent/trunk/src/changes/changes.xml (original)
+++ commons/proper/commons-parent/trunk/src/changes/changes.xml Wed Mar  7 14:40:16 2018
@@ -72,6 +72,7 @@ The <action> type attribute can be add,u
             <action type="update">maven-surefire-plugin 2.20.1 -> 2.21.0</action>
             <action type="update">maven-failsafe-plugin 2.20.1 -> 2.21.0</action>
             <action type="update">add "commons.japicmp.skip" = "true" parameter for japicmp. Which should be overridden.</action>
+            <action type="update">add newVersion of the current artifact to japicmp configuration</action>
         </release>
 
         <release version="43" date="2018-01-02" description="Updates plugins and generally requires Java 7.">