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 2011/11/28 11:06:32 UTC

svn commit: r1207051 - /commons/proper/jexl/trunk/pom.xml

Author: sebb
Date: Mon Nov 28 10:06:31 2011
New Revision: 1207051

URL: http://svn.apache.org/viewvc?rev=1207051&view=rev
Log:
Fix up Clirr reporting - ignore parser classes

Modified:
    commons/proper/jexl/trunk/pom.xml

Modified: commons/proper/jexl/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/jexl/trunk/pom.xml?rev=1207051&r1=1207050&r2=1207051&view=diff
==============================================================================
--- commons/proper/jexl/trunk/pom.xml (original)
+++ commons/proper/jexl/trunk/pom.xml Mon Nov 28 10:06:31 2011
@@ -201,22 +201,6 @@
                     </execution>
                 </executions>
             </plugin>
-            <!--
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>clirr-maven-plugin</artifactId>
-                <version>2.2.2</version>
-                <configuration>
-                    <comparisonArtifacts>
-                        <comparisonArtifact>
-                            <groupId>commons-jexl</groupId>
-                            <artifactId>commons-jexl</artifactId>
-                            <version>1.1</version>
-                        </comparisonArtifact>
-                    </comparisonArtifacts>
-                </configuration>
-            </plugin>
-            -->
         </plugins>
     </build>
 
@@ -225,7 +209,7 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-changes-plugin</artifactId>
-                <version>2.3</version>
+                <version>${commons.changes.version}</version>
                 <configuration>
                     <xmlPath>${basedir}/src/site/xdoc/changes.xml</xmlPath>
                     <issueLinkTemplatePerSystem>
@@ -299,22 +283,16 @@
                     </rulesets>
                 </configuration>
             </plugin>
-            <!--
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>clirr-maven-plugin</artifactId>
-                <version>2.2.2</version>
+                <!-- version is defined in commons-parent -->
                 <configuration>
-                    <comparisonArtifacts>
-                        <comparisonArtifact>
-                            <groupId>commons-jexl</groupId>
-                            <artifactId>commons-jexl</artifactId>
-                            <version>1.1</version>
-                        </comparisonArtifact>
-                    </comparisonArtifacts>
+                    <excludes>
+                      <exclude>org/apache/commons/jexl2/parser/**</exclude>
+                    </excludes>
                 </configuration>
             </plugin>
-            -->
         </plugins>
     </reporting>
 </project>
\ No newline at end of file