You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2008/04/04 16:22:29 UTC

svn commit: r644722 - in /maven/plugins/trunk/maven-shade-plugin/src/site/apt: index.apt usage.apt

Author: bentmann
Date: Fri Apr  4 07:22:27 2008
New Revision: 644722

URL: http://svn.apache.org/viewvc?rev=644722&view=rev
Log:
o Increased compliance with Plugin Documentation Standard

Modified:
    maven/plugins/trunk/maven-shade-plugin/src/site/apt/index.apt
    maven/plugins/trunk/maven-shade-plugin/src/site/apt/usage.apt

Modified: maven/plugins/trunk/maven-shade-plugin/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-shade-plugin/src/site/apt/index.apt?rev=644722&r1=644721&r2=644722&view=diff
==============================================================================
--- maven/plugins/trunk/maven-shade-plugin/src/site/apt/index.apt (original)
+++ maven/plugins/trunk/maven-shade-plugin/src/site/apt/index.apt Fri Apr  4 07:22:27 2008
@@ -1,5 +1,5 @@
  ------
- Maven 2 Shade Plugin
+ Introduction
  ------
  Mauro Talevi
  ------
@@ -21,25 +21,24 @@
 ~~ specific language governing permissions and limitations
 ~~ under the License.
 
-Introduction
+Maven 2 Shade Plugin
 
  This plugin provides the capability to package the artifact in a uber-jar, including its dependencies and
- to "shade" - ie rename - the packages of some of the dependencies.
+ to <shade> - i.e. rename - the packages of some of the dependencies.
 
- * Goals Overview
+* Goals Overview
 
   The Shade Plugin has a single goal:
 
-  * {{{shade-mojo.html}shade:shade}} is bound to the package phase and
+  * {{{shade-mojo.html}shade:shade}} is bound to the <<<package>>> phase and
   is used to create a shaded jar.
 
-
- * Usage
+* Usage
 
   Instructions on how to use the Shade Plugin can be found in the
   {{{usage.html}usage}} page.
 
- * Examples
+* Examples
 
   To provide you with better understanding on some usages of the Shade
   Plugin, you can take a look {{{examples.html}examples}} page.

Modified: maven/plugins/trunk/maven-shade-plugin/src/site/apt/usage.apt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-shade-plugin/src/site/apt/usage.apt?rev=644722&r1=644721&r2=644722&view=diff
==============================================================================
--- maven/plugins/trunk/maven-shade-plugin/src/site/apt/usage.apt (original)
+++ maven/plugins/trunk/maven-shade-plugin/src/site/apt/usage.apt Fri Apr  4 07:22:27 2008
@@ -1,5 +1,5 @@
  ------
- Maven 2 Shade Plugin
+ Usage
  ------
  Mauro Talevi
  ------
@@ -21,16 +21,18 @@
 ~~ specific language governing permissions and limitations
 ~~ under the License.
 
- * Creating a shaded jar
+Usage
 
-  The goals for the Shade Plugin are bound to the package phase in the
+* Creating a Shaded JAR
+
+  The goals for the Shade Plugin are bound to the <<<package>>> phase in the
   build lifecycle.
 
 +-----
 mvn package
 +-----
 
- * Configuring Your Shade Plugin
+* Configuring Your Shade Plugin
 
 +-----
 <project>
@@ -40,6 +42,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-shade-plugin</artifactId>
+        <version>1.0.1</version>
         <configuration>
           <!-- put your configurations here -->
         </configuration>
@@ -48,4 +51,4 @@
   </build>
   ...
 </project>
-+-----
\ No newline at end of file
++-----