You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by mh...@apache.org on 2007/01/31 05:50:14 UTC

svn commit: r501728 - /mina/sandbox/mheath/aioj/trunk/pom.xml

Author: mheath
Date: Tue Jan 30 20:50:14 2007
New Revision: 501728

URL: http://svn.apache.org/viewvc?view=rev&rev=501728
Log:
Added information for site generation.
Changed version to 0.1

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=501728&r1=501727&r2=501728
==============================================================================
--- mina/sandbox/mheath/aioj/trunk/pom.xml (original)
+++ mina/sandbox/mheath/aioj/trunk/pom.xml Tue Jan 30 20:50:14 2007
@@ -6,23 +6,29 @@
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>org.apache.aio</groupId>
 	<artifactId>aio</artifactId>
-	<version>0.1-SNAPSHOT</version>
+	<version>0.1</version>
 	<name>Asynchronous File I/O in Java</name>
-	<description>Provides asynchronous file operations for Java applications.</description>
+	<description>
+		Provides asynchronous file operations for Java applications.  The current implementation calls methods in a
+		java.nio.FileChannel object using tools from the java.util.concurrent package.  Future implementations will
+		provide support for POSIX AIO, Linux aiolib and Solaris' asynchronous I/O system calls.
+	</description>
 	<url>http://mina.apache.org/asynchronous-file-io-in-java.html</url>
 
-	<contributors>
-		<contributor>
+	<developers>
+		<developer>
 			<email>mheath@apache.org</email>
 			<name>Mike Heath</name>
+			<url>http://swamp.homelinux.net/blog</url>
 			<organization>Apache Software Foundation</organization>
+			<organizationUrl>http://apache.org/</organizationUrl>
 			<roles>
 				<role>Project Manager</role>
 				<role>Developer</role>
 			</roles>
 			<timezone>-7</timezone>
-		</contributor>
-	</contributors>
+		</developer>
+	</developers>
 
 	<licenses>
 		<license>
@@ -75,11 +81,26 @@
 		</plugins>
 	</build>
 	
+	<scm>
+		<connection>scm:svn:https://svn.apache.org/repos/asf/mina/sandbox/mheath/aioj</connection>
+		<developerConnection>scm:svn:https://svn.apache.org/repos/asf/mina/sandbox/mheath/aioj</developerConnection>
+		<url>https://svn.apache.org/repos/asf/mina/sandbox/mheath/aioj/</url>
+	</scm> 
+	
 	<reporting>
 		<plugins>
 			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-javadoc-plugin</artifactId>
+			</plugin>
+			<plugin>
+				<artifactId>maven-surefire-plugin</artifactId>
+			</plugin>
+			<plugin>
+				<artifactId>maven-jxr-plugin</artifactId>
+			</plugin>
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>taglist-maven-plugin</artifactId>
 			</plugin>
 		</plugins>
 	</reporting>