Author: ataylor
Date: 2011-04-18 02:21:18 -0400 (Mon, 18 Apr 2011)
New Revision: 10520
Modified:
trunk/hornetq-core/hornetq-core.iml
trunk/hornetq-core/pom.xml
Log:
added javadoc to core
Modified: trunk/hornetq-core/hornetq-core.iml
===================================================================
--- trunk/hornetq-core/hornetq-core.iml 2011-04-15 15:31:41 UTC (rev 10519)
+++ trunk/hornetq-core/hornetq-core.iml 2011-04-18 06:21:18 UTC (rev 10520)
@@ -7,6 +7,7 @@
<sourceFolder
url="file://$MODULE_DIR$/target/generated-sources/javacc"
isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/java"
isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/resources"
isTestSource="false" />
+ <excludeFolder url="file://$MODULE_DIR$/target/apidocs" />
<excludeFolder url="file://$MODULE_DIR$/target/classes" />
<excludeFolder url="file://$MODULE_DIR$/target/maven-archiver" />
</content>
Modified: trunk/hornetq-core/pom.xml
===================================================================
--- trunk/hornetq-core/pom.xml 2011-04-15 15:31:41 UTC (rev 10519)
+++ trunk/hornetq-core/pom.xml 2011-04-18 06:21:18 UTC (rev 10520)
@@ -64,6 +64,33 @@
<target>1.6</target>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.4</version>
+ <configuration>
+ <doclet>org.jboss.apiviz.APIviz</doclet>
+ <docletArtifact>
+ <groupId>org.jboss.apiviz</groupId>
+ <artifactId>apiviz</artifactId>
+ <version>1.3.1.GA</version>
+ </docletArtifact>
+ <useStandardDocletOptions>true</useStandardDocletOptions>
+ <minmemory>128m</minmemory>
+ <maxmemory>512m</maxmemory>
+ <quiet>false</quiet>
+ <aggregate>true</aggregate>
+
<excludePackageNames>org.hornetq.core:org.hornetq.utils</excludePackageNames>
+ </configuration>
+ <executions>
+ <execution>
+ <id>javadocs</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
Show replies by date