You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by sr...@apache.org on 2015/12/02 02:23:24 UTC

[6/9] storm git commit: re-add pegdown javadoc plugin for Markdown-based javadoc

re-add pegdown javadoc plugin for Markdown-based javadoc


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/f1fafdfb
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/f1fafdfb
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/f1fafdfb

Branch: refs/heads/master
Commit: f1fafdfb259dde00b03d227101bc712e2ba988fd
Parents: 783a57a
Author: P. Taylor Goetz <pt...@gmail.com>
Authored: Tue Nov 24 17:02:39 2015 -0500
Committer: P. Taylor Goetz <pt...@gmail.com>
Committed: Tue Nov 24 17:02:39 2015 -0500

----------------------------------------------------------------------
 pom.xml | 13 +++++++++++++
 1 file changed, 13 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/f1fafdfb/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 626bebc..d44e4a7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -862,6 +862,19 @@
                     </excludes>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <doclet>ch.raffael.doclets.pegdown.PegdownDoclet</doclet>
+                    <docletArtifact>
+                        <groupId>ch.raffael.pegdown-doclet</groupId>
+                        <artifactId>pegdown-doclet</artifactId>
+                        <version>1.1</version>
+                    </docletArtifact>
+                    <useStandardDocletOptions>true</useStandardDocletOptions>
+                </configuration>
+            </plugin>
         </plugins>
     </build>