You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by im...@apache.org on 2007/03/25 10:08:35 UTC

svn commit: r522173 - in /myfaces/current/orchestra: core15/pom.xml examples/pom.xml

Author: imario
Date: Sun Mar 25 01:08:34 2007
New Revision: 522173

URL: http://svn.apache.org/viewvc?view=rev&rev=522173
Log:
make site run through

Modified:
    myfaces/current/orchestra/core15/pom.xml
    myfaces/current/orchestra/examples/pom.xml

Modified: myfaces/current/orchestra/core15/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/current/orchestra/core15/pom.xml?view=diff&rev=522173&r1=522172&r2=522173
==============================================================================
--- myfaces/current/orchestra/core15/pom.xml (original)
+++ myfaces/current/orchestra/core15/pom.xml Sun Mar 25 01:08:34 2007
@@ -284,6 +284,21 @@
 				<artifactId>surefire-report-maven-plugin</artifactId>
 			</plugin>
 
+            <plugin>
+                <artifactId>maven-pmd-plugin</artifactId>
+                <version>2.0</version>
+                <configuration>
+                    <rulesets>
+                        <ruleset>/rulesets/basic.xml</ruleset>
+                        <ruleset>/rulesets/unusedcode.xml</ruleset>
+                    </rulesets>
+                    <linkXref>true</linkXref>
+                    <minimumTokens>100</minimumTokens>
+                    <targetJdk>1.5</targetJdk>
+                </configuration>
+            </plugin>
+
+
 		</plugins>
 
 	</reporting>

Modified: myfaces/current/orchestra/examples/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/current/orchestra/examples/pom.xml?view=diff&rev=522173&r1=522172&r2=522173
==============================================================================
--- myfaces/current/orchestra/examples/pom.xml (original)
+++ myfaces/current/orchestra/examples/pom.xml Sun Mar 25 01:08:34 2007
@@ -196,4 +196,28 @@
 		</plugins>
 	</build>
 
+        <reporting>
+                <plugins>
+
+           <plugin>
+                <artifactId>maven-pmd-plugin</artifactId>
+                <version>2.0</version>
+                <configuration>
+                    <rulesets>
+                        <ruleset>/rulesets/basic.xml</ruleset>
+                        <ruleset>/rulesets/unusedcode.xml</ruleset>
+                    </rulesets>
+                    <linkXref>true</linkXref>
+                    <minimumTokens>100</minimumTokens>
+                    <targetJdk>1.5</targetJdk>
+                </configuration>
+            </plugin>
+
+
+                </plugins>
+
+        </reporting>
+
+
+
 </project>