Author: sebb
Date: Thu Jan  9 14:37:42 2014
New Revision: 1556820

URL: http://svn.apache.org/r1556820
Log:
Start preparing for CP 33 release

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=1556820&r1=1556819&r2=1556820&view=diff
==============================================================================
--- commons/proper/commons-parent/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/commons-parent/trunk/RELEASE-NOTES.txt Thu Jan  9 14:37:42 
2014
@@ -1,21 +1,30 @@
               Apache Commons Parent 33
                   RELEASE NOTES
 
-The Apache Commons Parent team is pleased to announce the release of Apache 
Commons Parent 32
+The Apache Commons Parent team is pleased to announce the release of Apache 
Commons Parent 33
 
 The Apache Commons Parent POM provides common settings for all Apache Commons 
components.
 
 The main changes in this release are:
- - added fix for Javadoc vulnerability (CVE-2013-1571, VU#225657) MJAVADOC-370
+ - Fixed Jacoco configuration syntax
  - updated some plugins
 
 Changes in this version include:
 
 Changes:
-o maven-javadoc-plugin          2.9  -> 2.9.1
-o maven-surefire-plugin         2.15 -> 2.16
-o maven-jxr-plugin              2.3 -> 2.4
-o clirr-maven-plugin            2.5 -> 2.6.1
+o                   maven-deploy-plugin                2.7 -> 2.8.1
+o                   maven-jxr-plugin                   2.3 -> 2.4
+o                   maven-install-plugin               2.4 -> 2.5.1
+o                   maven-release-plugin             2.4.1 -> 2.4.2
+o                   maven-surefire-plugin(s)          2.15 -> 2.16
+o                   remote-resources-plugin            1.4 -> 1.5
+o                   apache-rat-plugin                  0.9 -> 0.10
+o                   clirr-maven-plugin                 2.5 -> 2.6.1
+o                   cobertura-maven-plugin           2.5.2 -> 2.6
+o                   jacoco-maven-plugin 0.6.3.201306030806 -> 
0.6.4.201312101107
+o                   Fixed JaCoCo configuration - syntax changed completely 
between 0.6.2.x and 0.6.3.x
+o                   Add commons.compiler.version property so compiler plugin 
version can be overridden if necessary
+o                   Add source archive to Maven artifacts
 
 
 Historical list of changes: http://commons.apache.org/changes-report.html

Modified: commons/proper/commons-parent/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/pom.xml?rev=1556820&r1=1556819&r2=1556820&view=diff
==============================================================================
--- commons/proper/commons-parent/trunk/pom.xml (original)
+++ commons/proper/commons-parent/trunk/pom.xml Thu Jan  9 14:37:42 2014
@@ -35,6 +35,9 @@
 <!--
 Version 33:
 
+  - Fixed Jacoco configuration syntax
+  - updated some plugins
+
 For full details see:
 
http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-33/RELEASE-NOTES.txt
  -->
@@ -238,7 +241,7 @@ http://svn.apache.org/repos/asf/commons/
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-deploy-plugin</artifactId>
-          <version>2.7</version>
+          <version>2.8.1</version>
         </plugin>
         <!-- Apache parent includes docck and enforcer -->
         <plugin>
@@ -249,7 +252,7 @@ http://svn.apache.org/repos/asf/commons/
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-install-plugin</artifactId>
-          <version>2.4</version>
+          <version>2.5.1</version>
         </plugin>
         <!-- Apache parent: invoker -->
         <plugin>
@@ -282,14 +285,14 @@ http://svn.apache.org/repos/asf/commons/
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-release-plugin</artifactId>
-          <version>2.4.1</version>
+          <version>2.4.2</version>
         </plugin>
         <plugin>
           <!-- TODO see above - find better way to add N&L files to jars and 
test jars -->
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-remote-resources-plugin</artifactId>
           <!-- override old version from Apache pom 9 -->
-          <version>1.4</version>
+          <version>1.5</version>
           <configuration>
             <!--
                 Apache parent POM automatically adds "LICENSE" and "NOTICE" 
files
@@ -1246,19 +1249,15 @@ http://svn.apache.org/repos/asf/commons/
     <commons.surefire-report.version>2.16</commons.surefire-report.version>
     <!-- 2.9.1 includes fix for Javadoc vulnerability (CVE-2013-1571, 
VU#225657) MJAVADOC-370 -->
     <commons.javadoc.version>2.9.1</commons.javadoc.version>
-    <!-- 
-      For RAT 0.9, make sure you <exclude>site-content/**/*</exclude> in your 
POM if you overrdide the configuration
-      If you do not exclude site-content, RAT will take a long time to run, 
for example, 1 hour for Commons IO. 
-    -->
-    <commons.rat.version>0.9</commons.rat.version>
+    <commons.rat.version>0.10</commons.rat.version>
     <commons.changes.version>2.9</commons.changes.version>
     <commons.clirr.version>2.6.1</commons.clirr.version>
     <commons.jxr.version>2.4</commons.jxr.version>
     <commons.project-info.version>2.7</commons.project-info.version>
     <commons.wagon-ssh.version>2.3</commons.wagon-ssh.version>
     <commons.site-plugin.version>3.3</commons.site-plugin.version>
-    <commons.jacoco.version>0.6.3.201306030806</commons.jacoco.version>
-    <commons.cobertura.version>2.5.2</commons.cobertura.version>
+    <commons.jacoco.version>0.6.4.201312101107</commons.jacoco.version>
+    <commons.cobertura.version>2.6</commons.cobertura.version>
     <commons.jdepend.version>2.0-beta-2</commons.jdepend.version>
     <commons.compiler.version>3.1</commons.compiler.version>
 

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=1556820&r1=1556819&r2=1556820&view=diff
==============================================================================
--- commons/proper/commons-parent/trunk/src/changes/changes.xml (original)
+++ commons/proper/commons-parent/trunk/src/changes/changes.xml Thu Jan  9 
14:37:42 2014
@@ -60,14 +60,30 @@ The <action> type attribute can be add,u
 
     <body>
 
-        <release version="33" date="2013-??-??" description="
+        <release version="33" date="2014-01-??" description="
 The main changes in this release are:
+  - Fixed Jacoco configuration syntax
+  - updated some plugins
 ">
             <!-- List each change individually so the changes HTML report is 
easier to read -->
-            <!-- Note: the (major) syntax change is not documented AFAICT, and 
only the trunk docs are online for comparison. -->
+             
+            <action type="update">maven-deploy-plugin                2.7 -> 
2.8.1</action>
+            <action type="update">maven-jxr-plugin                   2.3 -> 
2.4</action>
+            <action type="update">maven-install-plugin               2.4 -> 
2.5.1</action>
+            <action type="update">maven-release-plugin             2.4.1 -> 
2.4.2</action>
+            <action type="update">maven-surefire-plugin(s)          2.15 -> 
2.16</action>
+            <action type="update">remote-resources-plugin            1.4 -> 
1.5</action>
+
+            <action type="update">apache-rat-plugin                  0.9 -> 
0.10</action>
+            <action type="update">clirr-maven-plugin                 2.5 -> 
2.6.1</action>
+            <action type="update">cobertura-maven-plugin           2.5.2 -> 
2.6</action>
+            
+            <action type="update">jacoco-maven-plugin 0.6.3.201306030806 -> 
0.6.4.201312101107</action>
             <action type="update">Fixed JaCoCo configuration - syntax changed 
completely between 0.6.2.x and 0.6.3.x</action>
+            <!-- Note: the (major) syntax change is not documented AFAICT, and 
only the trunk docs are online for comparison. -->
             <action type="update">Add commons.compiler.version property so 
compiler plugin version can be overridden if necessary</action>
-        </release>
+            <action type="update">Add source archive to Maven 
artifacts</action>
+            </release>
 
         <release version="32" date="2013-07-01" description="
 The main changes in this release are:
@@ -102,6 +118,7 @@ Coverage tool:
  Restored Cobertura as an optional profile
 ">
             <!-- List updates separately so the changes html report is easier 
to read -->
+            <action type="update">cobertura-maven-plugin           2.5.2 
reinstated</action>
             <action type="update">jacoco-maven-plugin  0.6.2.201302030002 -> 
0.6.3.201306030806</action>
             <action type="update">rat-maven-plugin                   0.8 -> 
0.9</action>
             <action type="update">maven-project-info-reports-plugin  2.6 -> 
2.7</action>


Reply via email to