You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@creadur.apache.org by se...@apache.org on 2013/05/20 21:02:40 UTC

svn commit: r1484565 - in /creadur/rat/trunk/apache-rat-plugin/src/site/apt: examples/basic.apt.vm index.apt usage.apt.vm

Author: sebb
Date: Mon May 20 19:02:38 2013
New Revision: 1484565

URL: http://svn.apache.org/r1484565
Log:
RAT-137 Website shows incorrect Maven goals in some pages

Modified:
    creadur/rat/trunk/apache-rat-plugin/src/site/apt/examples/basic.apt.vm
    creadur/rat/trunk/apache-rat-plugin/src/site/apt/index.apt
    creadur/rat/trunk/apache-rat-plugin/src/site/apt/usage.apt.vm

Modified: creadur/rat/trunk/apache-rat-plugin/src/site/apt/examples/basic.apt.vm
URL: http://svn.apache.org/viewvc/creadur/rat/trunk/apache-rat-plugin/src/site/apt/examples/basic.apt.vm?rev=1484565&r1=1484564&r2=1484565&view=diff
==============================================================================
--- creadur/rat/trunk/apache-rat-plugin/src/site/apt/examples/basic.apt.vm (original)
+++ creadur/rat/trunk/apache-rat-plugin/src/site/apt/examples/basic.apt.vm Mon May 20 19:02:38 2013
@@ -23,7 +23,7 @@ Basic use
   However, it doesn't run automatically, but on demand:
 
 ------------------------------------------------------------------
-  mvn rat:check
+  mvn apache-rat:check
 ------------------------------------------------------------------
 
   To achieve that, a section like the following needs to be

Modified: creadur/rat/trunk/apache-rat-plugin/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/creadur/rat/trunk/apache-rat-plugin/src/site/apt/index.apt?rev=1484565&r1=1484564&r2=1484565&view=diff
==============================================================================
--- creadur/rat/trunk/apache-rat-plugin/src/site/apt/index.apt (original)
+++ creadur/rat/trunk/apache-rat-plugin/src/site/apt/index.apt Mon May 20 19:02:38 2013
@@ -30,10 +30,10 @@ The Rat Maven Plugin
 
   The following goals are available:
 
-  * {{{./check-mojo.html}rat:check}} Runs Rat and creates a report, which is written
+  * {{{./check-mojo.html}apache-rat:check}} Runs Rat and creates a report, which is written
     to a plain text file.
 
-  * {{{./rat-mojo.html}rat:rat}} Runs Rat and creates a report, which will be added
+  * {{{./rat-mojo.html}apache-rat:rat}} Runs Rat and creates a report, which will be added
     to the generated site.
 
 * Usage
@@ -45,9 +45,9 @@ The Rat Maven Plugin
   To provide you with better understanding of some usages of the Rat Maven Plugin,
   you can take a look into the following examples:
 
-  * {{{./examples/basic.html}Basic use}} of the rat:check goal.
+  * {{{./examples/basic.html}Basic use}} of the apache-rat:check goal.
 
-  * {{{./examples/verify.html}Automatically}} running the rat:check goal
+  * {{{./examples/verify.html}Automatically}} running the apache-rat:check goal
     when the project is built.
 
   * Adding the report to the {{{./examples/site.html}generated site}}.

Modified: creadur/rat/trunk/apache-rat-plugin/src/site/apt/usage.apt.vm
URL: http://svn.apache.org/viewvc/creadur/rat/trunk/apache-rat-plugin/src/site/apt/usage.apt.vm?rev=1484565&r1=1484564&r2=1484565&view=diff
==============================================================================
--- creadur/rat/trunk/apache-rat-plugin/src/site/apt/usage.apt.vm (original)
+++ creadur/rat/trunk/apache-rat-plugin/src/site/apt/usage.apt.vm Mon May 20 19:02:38 2013
@@ -21,7 +21,7 @@ Usage
 
   To use the plugin, you've got two options: First of all, it can
   create a simple text file, called <<<target/rat.txt>>>, with the
-  plugins output. This is done by invoking the <<<rat:check>>> goal.
+  plugins output. This is done by invoking the <<<apache-rat:check>>> goal.
 
   You may also add a report to the generated site. This is your
   second option.
@@ -29,7 +29,7 @@ Usage
 *Writing the report to a text file
 
   To create a text file with the report, you need to run the
-  <<<rat:check>>> goal. Add a section like the following to your POM:
+  <<<apache-rat:check>>> goal. Add a section like the following to your POM:
 
 ------------------------------------------------------------------
   <build>
@@ -49,7 +49,7 @@ Usage
   line by simply typing
 
 ------------------------------------------------------------------
-  mvn rat:check
+  mvn apache-rat:check
 ------------------------------------------------------------------
 
   An example for running the plugin automatically can be found