Author: pbenedict
Date: Thu Jun 19 15:07:51 2014
New Revision: 1603913
URL: http://svn.apache.org/r1603913
Log:
Generate sources and javadocs
Modified:
struts/struts1/branches/STRUTS_1_2_BRANCH/pom.xml
Modified: struts/struts1/branches/STRUTS_1_2_BRANCH/pom.xml
URL:
http://svn.apache.org/viewvc/struts/struts1/branches/STRUTS_1_2_BRANCH/pom.xml?rev=1603913&r1=1603912&r2=1603913&view=diff
==============================================================================
--- struts/struts1/branches/STRUTS_1_2_BRANCH/pom.xml (original)
+++ struts/struts1/branches/STRUTS_1_2_BRANCH/pom.xml Thu Jun 19 15:07:51 2014
@@ -184,6 +184,22 @@
</configuration>
</plugin>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.9.1</version>
+ <executions>
+ <execution>
+ <id>attach-javadocs</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ <configuration>
+ <source>1.5</source>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
<configuration>
@@ -196,6 +212,19 @@
</includes>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <version>2.2.1</version>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
<dependencies>