Skip to content

Commit

Permalink
add mvn plugin to generate web API docs
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeer committed Feb 4, 2013
1 parent 20fbc5e commit f33ba64
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pom.xml
Expand Up @@ -300,6 +300,26 @@
</webApp>
</configuration>
</plugin>

<plugin>
<groupId>org.codehaus.enunciate</groupId>
<artifactId>maven-enunciate-plugin</artifactId>
<!-- check for the latest version -->
<version>1.26</version>
<executions>
<execution>
<goals>
<goal>docs</goal>
</goals>
<configuration>

<!-- the directory where to put the docs -->
<docsDir>${project.build.directory}/docs</docsDir>

</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit f33ba64

Please sign in to comment.