Author: linus Date: 2010-07-23 09:31:23-0700 New Revision: 18550 Modified: trunk/tools/maven/parentpom.xml
Log: Added the pmd report. Modified: trunk/tools/maven/parentpom.xml Url: http://argouml.tigris.org/source/browse/argouml/trunk/tools/maven/parentpom.xml?view=diff&pathrev=18550&r1=18549&r2=18550 ============================================================================== --- trunk/tools/maven/parentpom.xml (original) +++ trunk/tools/maven/parentpom.xml 2010-07-23 09:31:23-0700 @@ -85,6 +85,25 @@ <groupId>org.codehaus.mojo</groupId> <artifactId>jdepend-maven-plugin</artifactId> </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-pmd-plugin</artifactId> + <version>2.5</version> + <configuration> + <linkXref>true</linkXref> + <sourceEncoding>utf-8</sourceEncoding> + <minimumTokens>100</minimumTokens> + <targetJdk>1.5</targetJdk> + <excludes> + <exclude>**/*Lexer.java</exclude> + </excludes> + <excludeRoots> + <excludeRoot>target/generated-sources/stubs</excludeRoot> + </excludeRoots> + </configuration> + </plugin> + </plugins> </reporting> ------------------------------------------------------ http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=2637398 To unsubscribe from this discussion, e-mail: [[email protected]].
