Author: olamy
Date: Fri Oct 26 15:05:55 2012
New Revision: 1402541

URL: http://svn.apache.org/viewvc?rev=1402541&view=rev
Log:
document how to add module for site plugin

Modified:
    maven/doxia/site/src/site/apt/index.apt.vm
    maven/doxia/site/src/site/xdoc/references/index.xml

Modified: maven/doxia/site/src/site/apt/index.apt.vm
URL: 
http://svn.apache.org/viewvc/maven/doxia/site/src/site/apt/index.apt.vm?rev=1402541&r1=1402540&r2=1402541&view=diff
==============================================================================
--- maven/doxia/site/src/site/apt/index.apt.vm (original)
+++ maven/doxia/site/src/site/apt/index.apt.vm Fri Oct 26 15:05:55 2012
@@ -62,7 +62,7 @@ Maven Doxia
 
   * Developed in Java
 
-  * Support of several markup formats: APT (Almost Plain Text), Confluence, 
Simplified DocBook,
+  * Support of several markup formats: APT (Almost Plain Text), Confluence, 
Simplified DocBook, Markdown
     FML (FAQ Markup Language), FO, iText, LaTeX, RTF, TWiki, XDoc (popular in 
Apache land), XHTML
 
   * Easy to learn the syntax of the supported markup formats

Modified: maven/doxia/site/src/site/xdoc/references/index.xml
URL: 
http://svn.apache.org/viewvc/maven/doxia/site/src/site/xdoc/references/index.xml?rev=1402541&r1=1402540&r2=1402541&view=diff
==============================================================================
--- maven/doxia/site/src/site/xdoc/references/index.xml (original)
+++ maven/doxia/site/src/site/xdoc/references/index.xml Fri Oct 26 15:05:55 2012
@@ -186,6 +186,29 @@ under the License.
         </table>
 
         <p>
+          Note some modules are not included per default with the site plugin.
+          Have a look at the available modules here: <a 
href="http://repo.maven.apache.org/maven2/org/apache/maven/doxia/";>http://repo.maven.apache.org/maven2/org/apache/maven/doxia/</a>.
+          <br/>
+          If you need to add module for the maven site plugin simply add it as 
a dependency of the plugin
+          <source>
+            <![CDATA[
+            <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-site-plugin</artifactId>
+              <version>3.2</version>
+              <dependencies>
+                <dependency>
+                  <groupId>org.apache.maven.doxia</groupId>
+                  <artifactId>doxia-module-markdown</artifactId>
+                  <version>1.3</version>
+                </dependency>
+              </dependencies>
+            </plugin>
+            ]]>
+          </source>
+        </p>
+
+        <p>
           <sup>*</sup> Since Doxia 1.1
         </p>
         <p>


Reply via email to