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/28 16:17:43 UTC

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

Author: fgiust
Date: Sat Jan 28 07:17:39 2006
New Revision: 373158

URL: http://svn.apache.org/viewcvs?rev=373158&view=rev
Log:
correct configuration for plugin dependencies

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=373158&r1=373157&r2=373158&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 Sat Jan 28 07:17:39 2006
@@ -61,7 +61,7 @@
   <packaging>pom</packaging>
   <name>WhizBang Parent</name>
 
-  <build>
+  <reporting>
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
@@ -72,14 +72,22 @@
         </configuration>
       </plugin>
     </plugins>
+  </reporting>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-checkstyle-plugin</artifactId>
+		<dependencies>
+		  <dependency>
+		    <groupId>com.example.whizbang</groupId>
+		    <artifactId>build-tools</artifactId>
+		    <version>1.0</version>
+		  </dependency>
+		</dependencies>
+      </plugin>
+    </plugins>
   </build>
-  <dependencies>
-    <dependency>
-      <groupId>com.example.whizbang</groupId>
-      <artifactId>build-tools</artifactId>
-      <version>1.0</version>
-    </dependency>
-  </dependencies>
   <modules>
     <module>build-tools</module>
     <module>core</module>
@@ -94,7 +102,7 @@
   Lastly, kick off a build of the site.
 
 -------------------
-[whizbang]$ mvn checkstyle:check
+[whizbang]$ mvn site
 -------------------
 
   Every sub project will use the same checkstyle setup and configuration.