You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/08/20 01:50:01 UTC

svn commit: r1515673 - in /commons/proper/commons-parent/trunk: pom.xml src/changes/changes.xml

Author: sebb
Date: Mon Aug 19 23:50:01 2013
New Revision: 1515673

URL: http://svn.apache.org/r1515673
Log:
JaCoCo syntax was changed; hopefully this will be OK (until the next version?)

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

Modified: commons/proper/commons-parent/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/pom.xml?rev=1515673&r1=1515672&r2=1515673&view=diff
==============================================================================
--- commons/proper/commons-parent/trunk/pom.xml (original)
+++ commons/proper/commons-parent/trunk/pom.xml Mon Aug 19 23:50:01 2013
@@ -33,13 +33,10 @@
   <description>The Apache Commons Parent POM provides common settings for all Apache Commons components.</description>
 
 <!--
-Version 32:
-
-        Updated javadoc plugin to 2.9.1
-        This includes the fix for Javadoc vulnerability (CVE-2013-1571, VU#225657) MJAVADOC-370
+Version 33:
 
 For full details see:
-http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-30/RELEASE-NOTES.txt
+http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-33/RELEASE-NOTES.txt
  -->
 
   <!-- Now required by versions plugin -->
@@ -732,14 +729,43 @@ http://svn.apache.org/repos/asf/commons/
                 <goal>check</goal>
               </goals>
               <configuration>
-                <check>
-                  <classRatio>${commons.jacoco.classRatio}</classRatio>
-                  <instructionRatio>${commons.jacoco.instructionRatio}</instructionRatio>
-                  <methodRatio>${commons.jacoco.methodRatio}</methodRatio>
-                  <branchRatio>${commons.jacoco.branchRatio}</branchRatio>
-                  <complexityRatio>${commons.jacoco.complexityRatio}</complexityRatio>
-                  <lineRatio>${commons.jacoco.lineRatio}</lineRatio>
-                </check>
+                <rules>
+                  <rule>
+                    <element>BUNDLE</element>
+                    <limits>
+                      <limit>
+                        <counter>CLASS</counter>
+                        <value>COVEREDRATIO</value>
+                        <minimum>${commons.jacoco.classRatio}</minimum>
+                      </limit>
+                      <limit>
+                        <counter>INSTRUCTION</counter>
+                        <value>COVEREDRATIO</value>
+                        <minimum>${commons.jacoco.instructionRatio}</minimum>
+                      </limit>
+                      <limit>
+                        <counter>METHOD</counter>
+                        <value>COVEREDRATIO</value>
+                        <minimum>${commons.jacoco.methodRatio}</minimum>
+                      </limit>
+                      <limit>
+                        <counter>BRANCH</counter>
+                        <value>COVEREDRATIO</value>
+                        <minimum>${commons.jacoco.branchRatio}</minimum>
+                      </limit>
+                      <limit>
+                        <counter>LINE</counter>
+                        <value>COVEREDRATIO</value>
+                        <minimum>${commons.jacoco.lineRatio}</minimum>
+                      </limit>
+                      <limit>
+                        <counter>COMPLEXITY</counter>
+                        <value>COVEREDRATIO</value>
+                        <minimum>${commons.jacoco.complexityRatio}</minimum>
+                      </limit>
+                    </limits>
+                  </rule>
+                </rules>
                 <haltOnFailure>${commons.jacoco.haltOnFailure}</haltOnFailure>
               </configuration>
             </execution>
@@ -1249,12 +1275,12 @@ http://svn.apache.org/repos/asf/commons/
     <commons.release.3.binary.suffix>-bin</commons.release.3.binary.suffix>
 
     <!-- Default values for the jacoco-maven-plugin reports -->
-    <commons.jacoco.classRatio>100</commons.jacoco.classRatio>
-    <commons.jacoco.instructionRatio>90</commons.jacoco.instructionRatio>
-    <commons.jacoco.methodRatio>95</commons.jacoco.methodRatio>
-    <commons.jacoco.branchRatio>85</commons.jacoco.branchRatio>
-    <commons.jacoco.complexityRatio>85</commons.jacoco.complexityRatio>
-    <commons.jacoco.lineRatio>90</commons.jacoco.lineRatio>
+    <commons.jacoco.classRatio>1.00</commons.jacoco.classRatio>
+    <commons.jacoco.instructionRatio>0.90</commons.jacoco.instructionRatio>
+    <commons.jacoco.methodRatio>0.95</commons.jacoco.methodRatio>
+    <commons.jacoco.branchRatio>0.85</commons.jacoco.branchRatio>
+    <commons.jacoco.complexityRatio>0.85</commons.jacoco.complexityRatio>
+    <commons.jacoco.lineRatio>0.90</commons.jacoco.lineRatio>
     <commons.jacoco.haltOnFailure>false</commons.jacoco.haltOnFailure>
    
     <!-- Commons Component Id -->

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=1515673&r1=1515672&r2=1515673&view=diff
==============================================================================
--- commons/proper/commons-parent/trunk/src/changes/changes.xml (original)
+++ commons/proper/commons-parent/trunk/src/changes/changes.xml Mon Aug 19 23:50:01 2013
@@ -64,6 +64,8 @@ The <action> type attribute can be add,u
 The main changes in this release are:
 ">
             <!-- 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">Fixed JaCoCo configuration - syntax changed completely between 0.6.2.x and 0.6.3.x</action>
             <action type="update">Add commons.compiler.version property so compiler plugin version can be overridden if necessary</action>
         </release>