You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2007/12/17 15:41:16 UTC

svn commit: r604884 - /myfaces/core/trunk_1.2.x/pom.xml

Author: skitching
Date: Mon Dec 17 06:41:15 2007
New Revision: 604884

URL: http://svn.apache.org/viewvc?rev=604884&view=rev
Log:
Exclude some classes from the pmd report to stop them crashing.

Modified:
    myfaces/core/trunk_1.2.x/pom.xml

Modified: myfaces/core/trunk_1.2.x/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/core/trunk_1.2.x/pom.xml?rev=604884&r1=604883&r2=604884&view=diff
==============================================================================
--- myfaces/core/trunk_1.2.x/pom.xml (original)
+++ myfaces/core/trunk_1.2.x/pom.xml Mon Dec 17 06:41:15 2007
@@ -103,6 +103,11 @@
           <linkXref>true</linkXref>
           <minimumTokens>100</minimumTokens>
           <targetJdk>1.5</targetJdk>
+          <excludes>
+            <!-- these class make the PMD plugin crash (NullPointerException). -->
+            <exclude>org/apache/myfaces/el/convert/PropertyResolverToELResolver.java</exclude>
+            <exclude>org/apache/myfaces/el/PropertyResolverImpl.java</exclude>
+          </excludes>
         </configuration>
       </plugin>
     </plugins>