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 2008/07/09 20:32:42 UTC

svn commit: r675293 - /myfaces/myfaces-master-pom/trunk/pom.xml

Author: skitching
Date: Wed Jul  9 11:32:42 2008
New Revision: 675293

URL: http://svn.apache.org/viewvc?rev=675293&view=rev
Log:
Add a default configuration for the checkstyle plugin.
Remove the checkstyle report by default, as (a) the settings are not appropriate for every project,
and (b) this project is the parent of the checkstyle one which makes using it rather recursive.

Modified:
    myfaces/myfaces-master-pom/trunk/pom.xml

Modified: myfaces/myfaces-master-pom/trunk/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/myfaces-master-pom/trunk/pom.xml?rev=675293&r1=675292&r2=675293&view=diff
==============================================================================
--- myfaces/myfaces-master-pom/trunk/pom.xml (original)
+++ myfaces/myfaces-master-pom/trunk/pom.xml Wed Jul  9 11:32:42 2008
@@ -732,6 +732,16 @@
                 <artifactId>maven-surefire-report-plugin</artifactId>
                 <version>2.3.1</version>
               </plugin>
+
+              <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <version>2.2</version>
+                <configuration>
+                    <configLocation>default/myfaces-checks-standard.xml</configLocation>
+                    <headerLocation>default/myfaces-header.txt</headerLocation>
+                </configuration>
+              </plugin>
           </plugins>
         </pluginManagement>
     </build>
@@ -768,15 +778,6 @@
                 <artifactId>jdepend-maven-plugin</artifactId>
                 <version>2.0-beta-1</version>
             </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-checkstyle-plugin</artifactId>
-                <version>2.2</version>
-                <configuration>
-                    <configLocation>default/myfaces-checks.xml</configLocation>
-                    <headerLocation>default/myfaces-header.txt</headerLocation>
-                </configuration>
-            </plugin>
       </plugins>
     </reporting>