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/01/29 15:01:12 UTC

svn commit: r616325 - /maven/plugins/trunk/maven-site-plugin/src/site/fml/faq.fml

Author: vsiveton
Date: Tue Jan 29 06:01:11 2008
New Revision: 616325

URL: http://svn.apache.org/viewvc?rev=616325&view=rev
Log:
o updated the faq to handle twiki format

Modified:
    maven/plugins/trunk/maven-site-plugin/src/site/fml/faq.fml

Modified: maven/plugins/trunk/maven-site-plugin/src/site/fml/faq.fml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/site/fml/faq.fml?rev=616325&r1=616324&r2=616325&view=diff
==============================================================================
--- maven/plugins/trunk/maven-site-plugin/src/site/fml/faq.fml (original)
+++ maven/plugins/trunk/maven-site-plugin/src/site/fml/faq.fml Tue Jan 29 06:01:11 2008
@@ -94,5 +94,37 @@
         </p>
       </answer>
     </faq>
+    <faq id="How to include a custom Doxia modules, like Twiki">
+      <question>How to include a custom Doxia modules, like Twiki?</question>
+      <answer>
+        <p>
+          The site plugin handles out-of-box apt, xdoc and fml formats. If you
+          want to use a custom format like Twiki, you need to specify the
+          Doxia Twiki dependency, i.e.:
+          <source>
+<project>
+  ...
+  <build>
+    <plugins>
+      ...
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-site-plugin</artifactId>
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.maven.doxia</groupId>
+            <artifactId>doxia-module-twiki</artifactId>
+            <version>1.0-alpha-10-SNAPSHOT</version>
+          </dependency>
+        </dependencies>
+      </plugin>
+    </plugins>
+  </build>
+  ...
+</project>
+          </source>
+        </p>
+      </answer>
+    </faq>
   </part>
 </faqs>