You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by fg...@apache.org on 2006/01/22 11:54:32 UTC

svn commit: r371263 - /maven/plugins/trunk/maven-checkstyle-plugin/src/site/apt/tips.apt

Author: fgiust
Date: Sun Jan 22 02:54:29 2006
New Revision: 371263

URL: http://svn.apache.org/viewcvs?rev=371263&view=rev
Log:
rollback previous change, but leave the plugin dependency configured in the <build> section.
The suggested pom is valid but this DOESN'T work actually, and can't be used for site reports.

Modified:
    maven/plugins/trunk/maven-checkstyle-plugin/src/site/apt/tips.apt

Modified: maven/plugins/trunk/maven-checkstyle-plugin/src/site/apt/tips.apt
URL: http://svn.apache.org/viewcvs/maven/plugins/trunk/maven-checkstyle-plugin/src/site/apt/tips.apt?rev=371263&r1=371262&r2=371263&view=diff
==============================================================================
--- maven/plugins/trunk/maven-checkstyle-plugin/src/site/apt/tips.apt (original)
+++ maven/plugins/trunk/maven-checkstyle-plugin/src/site/apt/tips.apt Sun Jan 22 02:54:29 2006
@@ -61,7 +61,7 @@
   <packaging>pom</packaging>
   <name>WhizBang Parent</name>
 
-  <reporting>
+  <build>
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
@@ -72,7 +72,7 @@
         </configuration>
       </plugin>
     </plugins>
-  </reporting>
+  </build>
   <dependencies>
     <dependency>
       <groupId>com.example.whizbang</groupId>
@@ -94,7 +94,7 @@
   Lastly, kick off a build of the site.
 
 -------------------
-[whizbang]$ mvn site
+[whizbang]$ mvn checkstyle:check
 -------------------
 
   Every sub project will use the same checkstyle setup and configuration.