You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2006/08/29 06:10:04 UTC

svn commit: r437947 - /geronimo/genesis/trunk/config/clover-config/src/site/apt/usage.apt

Author: jdillon
Date: Mon Aug 28 21:10:04 2006
New Revision: 437947

URL: http://svn.apache.org/viewvc?rev=437947&view=rev
Log:
Added usage

Added:
    geronimo/genesis/trunk/config/clover-config/src/site/apt/usage.apt

Added: geronimo/genesis/trunk/config/clover-config/src/site/apt/usage.apt
URL: http://svn.apache.org/viewvc/geronimo/genesis/trunk/config/clover-config/src/site/apt/usage.apt?rev=437947&view=auto
==============================================================================
--- geronimo/genesis/trunk/config/clover-config/src/site/apt/usage.apt (added)
+++ geronimo/genesis/trunk/config/clover-config/src/site/apt/usage.apt Mon Aug 28 21:10:04 2006
@@ -0,0 +1,46 @@
+ ------
+ Genesis Clover Configuration
+ ------
+ ???
+ ------
+ ???
+
+Usage
+
+* Setup
+
+ To use, the module must first be installed as an extention.
+
++----------+
+<build>
+    <extensions>
+        <extension>
+            <groupId>org.apache.geronimo.genesis.config</groupId>
+            <artifactId>clover-config</artifactId>
+        </extension>
+    </extensions>
+</build>
++----------+
+
+* Configure Checkstyle
+
+ Configure the <<<maven-clover-plugin>>> to know about the <<<clover.license>>>
+ resource which is contained in the <<<clover-config>>> module.
+ 
+ NOTE: This is only to be used by Apache Geronimo projects.
+
++----------+
+<pluginManagement>
+    <plugins>
+        <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-clover-plugin</artifactId>
+            <configuration>
+                <generateHtml>true</generateHtml>
+                <jdk>1.4</jdk>
+                <licenseLocation>org/apache/geronimo/clover.license</licenseLocation>
+            </configuration>
+        </plugin>
+    </plugins>
+</pluginManagement>
++----------+