Author: mheath
Date: Sat Jan 20 13:43:30 2007
New Revision: 498177
URL: http://svn.apache.org/viewvc?view=rev&rev=498177
Log:
Updated pom to add Java Doc creation and some of the pom data.
Modified:
mina/sandbox/mheath/aioj/trunk/pom.xml
Modified: mina/sandbox/mheath/aioj/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/mina/sandbox/mheath/aioj/trunk/pom.xml?view=diff&rev=498177&r1=498176&r2=498177
==============================================================================
--- mina/sandbox/mheath/aioj/trunk/pom.xml (original)
+++ mina/sandbox/mheath/aioj/trunk/pom.xml Sat Jan 20 13:43:30 2007
@@ -7,6 +7,29 @@
<groupId>org.apache.aio</groupId>
<artifactId>aio</artifactId>
<version>0.1-SNAPSHOT</version>
+ <name>Asynchronous File I/O in Java</name>
+ <description>Provides asynchronous file operations for Java
applications.</description>
+ <url>http://mina.apache.org/asynchronous-file-io-in-java.html</url>
+
+ <contributors>
+ <contributor>
+ <email>[EMAIL PROTECTED]</email>
+ <name>Mike Heath</name>
+ <organization>Apache Software Foundation</organization>
+ <roles>
+ <role>Project Manager</role>
+ <role>Developer</role>
+ </roles>
+ <timezone>-7</timezone>
+ </contributor>
+ </contributors>
+
+ <licenses>
+ <license>
+ <name>The Apache Software License, Version 2.0</name>
+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+ </license>
+ </licenses>
<build>
<plugins>
@@ -35,8 +58,31 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.2</version>
+ <executions>
+ <execution>
+ <id>javadoc-jar</id>
+ <phase>package</phase>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </reporting>
<dependencies>
<dependency>