You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by vs...@apache.org on 2008/03/05 13:00:50 UTC

svn commit: r633830 - in /maven/site/trunk: pom.xml src/site/apt/guides/getting-started/index.apt src/site/apt/guides/getting-started/maven-in-five-minutes.apt src/site/apt/guides/introduction/introduction-to-plugins.apt src/site/apt/pom.apt

Author: vsiveton
Date: Wed Mar  5 04:00:47 2008
New Revision: 633830

URL: http://svn.apache.org/viewvc?rev=633830&view=rev
Log:
o added commented linkcheck plugin
o fixed links to be relative paths

Modified:
    maven/site/trunk/pom.xml
    maven/site/trunk/src/site/apt/guides/getting-started/index.apt
    maven/site/trunk/src/site/apt/guides/getting-started/maven-in-five-minutes.apt
    maven/site/trunk/src/site/apt/guides/introduction/introduction-to-plugins.apt
    maven/site/trunk/src/site/apt/pom.apt

Modified: maven/site/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/site/trunk/pom.xml?rev=633830&r1=633829&r2=633830&view=diff
==============================================================================
--- maven/site/trunk/pom.xml (original)
+++ maven/site/trunk/pom.xml Wed Mar  5 04:00:47 2008
@@ -92,6 +92,13 @@
           </reportSet>
         </reportSets>
       </plugin>
+      <!-- Note: 'site' needs to be called twice to generate the linkcheck report
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-linkcheck-plugin</artifactId>
+        <version>1.0-SNAPSHOT</version>
+      </plugin>
+      -->
     </plugins>
   </reporting>
 
@@ -285,7 +292,7 @@
         <otherArchive>http://maven.doxia.commits.markmail.org/</otherArchive>
       </otherArchives>
     </mailingList>
-    
+
     <!-- duplication from scm - temporary until they inherit properly -->
     <mailingList>
       <name>SCM Developer List</name>

Modified: maven/site/trunk/src/site/apt/guides/getting-started/index.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/getting-started/index.apt?rev=633830&r1=633829&r2=633830&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/getting-started/index.apt (original)
+++ maven/site/trunk/src/site/apt/guides/getting-started/index.apt Wed Mar  5 04:00:47 2008
@@ -534,7 +534,7 @@
   configuration. It is also possible to add new goals to the process, and configure specific goals. For information on
   this, see the {{{../introduction/introduction-to-the-lifecycle.html} Introduction to the Build Lifecycle}}.
 
-  To find out what configuration is available for a plugin, you can see the {{{/plugins/} Plugins List}} and navigate
+  To find out what configuration is available for a plugin, you can see the {{{../../plugins/} Plugins List}} and navigate
   to the plugin and goal you are using.
 
 * {How do I add resources to my JAR?}

Modified: maven/site/trunk/src/site/apt/guides/getting-started/maven-in-five-minutes.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/getting-started/maven-in-five-minutes.apt?rev=633830&r1=633829&r2=633830&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/getting-started/maven-in-five-minutes.apt (original)
+++ maven/site/trunk/src/site/apt/guides/getting-started/maven-in-five-minutes.apt Wed Mar  5 04:00:47 2008
@@ -105,7 +105,7 @@
 ** What did I just do?
 
   You executed the Maven goal <archetype:create>, and passed in various parameters to that goal.
-  The prefix <archetype> is the {{{/plugins/index.html}plugin}} that contains the goal. If you are familiar with
+  The prefix <archetype> is the {{{../../plugins/index.html}plugin}} that contains the goal. If you are familiar with
   {{{http://ant.apache.org}Ant}}, you
   may concieve of this as similar to a task. This goal created a simple project based upon an archetype.
   Suffice it to say for now that a <plugin> is a collection

Modified: maven/site/trunk/src/site/apt/guides/introduction/introduction-to-plugins.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/introduction/introduction-to-plugins.apt?rev=633830&r1=633829&r2=633830&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/introduction/introduction-to-plugins.apt (original)
+++ maven/site/trunk/src/site/apt/guides/introduction/introduction-to-plugins.apt Wed Mar  5 04:00:47 2008
@@ -49,12 +49,12 @@
   description of each plugin goal (or Mojo).
 
   One of the simplest plugins in Maven 2.0 is the Clean Plugin.  The
-  {{{/plugins/maven-clean-plugin/}Maven
+  {{{../../plugins/maven-clean-plugin/}Maven
   Clean plugin}} (maven-clean-plugin) is responsible for removing the target
   directory of a Maven 2 project.  When you run "mvn clean", Maven 2 executes
   the "clean" goal as defined in the Clean plug-in, and the target directory
   is removed.  The Clean plugin
-  {{{/plugins/maven-clean-plugin/clean-mojo.html}defines
+  {{{../../plugins/maven-clean-plugin/clean-mojo.html}defines
   a parameter}} which can be used to customize plugin behavior, this parameter is
   called outputDirectory and it defaults to $\{project.build.directory\}.
 

Modified: maven/site/trunk/src/site/apt/pom.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/pom.apt?rev=633830&r1=633829&r2=633830&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/pom.apt (original)
+++ maven/site/trunk/src/site/apt/pom.apt Wed Mar  5 04:00:47 2008
@@ -631,7 +631,7 @@
   directory is <<<$\{basedir\}/src/main/filters/>>>.
 
   For a more comprehensive look at what filters are and what they can do, take a look at the
-  {{{/guides/getting-started}quick start guide}}.
+  {{{guides/getting-started}quick start guide}}.
 
 *** {Resources}