Author: rwinston
Date: Wed Oct 1 13:59:06 2008
New Revision: 700919
URL: http://svn.apache.org/viewvc?rev=700919&view=rev
Log:
Add javadoc and sources plugins
Modified:
commons/proper/net/branches/NET_2_0/pom.xml
Modified: commons/proper/net/branches/NET_2_0/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/net/branches/NET_2_0/pom.xml?rev=700919&r1=700918&r2=700919&view=diff
==============================================================================
--- commons/proper/net/branches/NET_2_0/pom.xml (original)
+++ commons/proper/net/branches/NET_2_0/pom.xml Wed Oct 1 13:59:06 2008
@@ -75,7 +75,7 @@
<developer>
<name>Daniel F. Savarese</name>
<id>dfs</id>
- <email>dfs -> apache.org</email>
+ <email>[EMAIL PROTECTED]</email>
<organization>
<a
href="http://www.savarese.com/">Savarese Software Research</a>
</organization>
@@ -91,7 +91,7 @@
<contributors>
<contributor>
<name>Rob Hasselbaum</name>
- <email>rhasselbaum -> alumni.ithaca.edu</email>
+ <email>[EMAIL PROTECTED]</email>
</contributor>
<contributor>
<name>Mario Ivankovits</name>
@@ -135,6 +135,21 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<excludes>
@@ -199,6 +214,8 @@
</executions>
</plugin>
+
+
</plugins>
<testResources>
@@ -210,6 +227,7 @@
</testResource>
</testResources>
+
</build>
<reporting>
@@ -249,6 +267,7 @@
<links>
<link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
</links>
+
<excludePackageNames>examples.*</excludePackageNames>
</configuration>
</plugin>