[seam-commits] Seam SVN: r13041 - dist/trunk.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Fri Jun 4 12:57:50 EDT 2010
Author: pete.muir at jboss.org
Date: 2010-06-04 12:57:50 -0400 (Fri, 04 Jun 2010)
New Revision: 13041
Modified:
dist/trunk/pom.xml
Log:
add javadoc (not working)
Modified: dist/trunk/pom.xml
===================================================================
--- dist/trunk/pom.xml 2010-06-04 15:14:06 UTC (rev 13040)
+++ dist/trunk/pom.xml 2010-06-04 16:57:50 UTC (rev 13041)
@@ -302,6 +302,25 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>uber-javadoc-jar</id>
+ <phase>package</phase>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ <configuration>
+ <includeDependencySources>true</includeDependencySources>
+ <dependencySourceIncludes>
+ <dependencySourceInclude>org.jboss.seam.*</dependencySourceInclude>
+ </dependencySourceIncludes>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<dependencies>
<dependency>
@@ -318,7 +337,7 @@
<goal>shade</goal>
</goals>
<configuration>
- <createSourcesJar />
+ <createSourcesJar>true</createSourcesJar>
<artifactSet>
<includes>
<include>org.jboss.seam.*:*</include>
More information about the seam-commits
mailing list