Author: mwebb
Date: Wed Nov 14 17:47:45 2007
New Revision: 595182

URL: http://svn.apache.org/viewvc?rev=595182&view=rev
Log:
updated the pom file ...

Modified:
    mina/sandbox/mwebb/mina/pom.xml

Modified: mina/sandbox/mwebb/mina/pom.xml
URL: 
http://svn.apache.org/viewvc/mina/sandbox/mwebb/mina/pom.xml?rev=595182&r1=595181&r2=595182&view=diff
==============================================================================
--- mina/sandbox/mwebb/mina/pom.xml (original)
+++ mina/sandbox/mwebb/mina/pom.xml Wed Nov 14 17:47:45 2007
@@ -1,18 +1,117 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.mina</groupId>
-  <artifactId>mina</artifactId>
-  <packaging>jar</packaging>
-  <version>1.0-SNAPSHOT</version>
-  <name>mina</name>
-  <url>http://maven.apache.org</url>
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-</project>
+<project xmlns="http://maven.apache.org/POM/4.0.0";
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+       <modelVersion>4.0.0</modelVersion>
+       <groupId>org.apache.mina</groupId>
+       <artifactId>mwebb-sandbox</artifactId>
+       <packaging>jar</packaging>
+       <version>1.0-SNAPSHOT</version>
+       <name>Mark Webb's MINA Sandbox</name>
+       <url>http://maven.apache.org</url>
+
+       <description>
+               Mark Webb's Sandbox for writing MINA applications
+       </description>
+
+       <developers>
+               <developer>
+                       <email>[EMAIL PROTECTED]</email>
+                       <name>Mark Webb</name>
+                       <url>http://www.markwebb.org</url>
+                       <organization>Apache Software Foundation</organization>
+                       <organizationUrl>http://apache.org/</organizationUrl>
+                       <roles>
+                               <role>Developer</role>
+                       </roles>
+                       <timezone>-5</timezone>
+               </developer>
+       </developers>
+
+       <licenses>
+               <license>
+                       <name>The Apache Software License, Version 2.0</name>
+                       
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+               </license>
+       </licenses>
+
+       <scm>
+               <connection>
+                       
scm:svn:https://svn.apache.org/repos/asf/mina/sandbox/mwebb
+               </connection>
+               <developerConnection>
+                       
scm:svn:https://svn.apache.org/repos/asf/mina/sandbox/mwebb
+               </developerConnection>
+               <url>https://svn.apache.org/repos/asf/mina/sandbox/mwebb</url>
+       </scm>
+
+       <reporting>
+               <plugins>
+                       <plugin>
+                               <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>
+
+
+       <dependencies>
+               <dependency>
+                       <groupId>junit</groupId>
+                       <artifactId>junit</artifactId>
+                       <version>3.8.1</version>
+                       <scope>test</scope>
+               </dependency>
+
+               <dependency>
+                       <groupId>org.apache.mina</groupId>
+                       <artifactId>mina-core</artifactId>
+                       <version>2.0.0-M1-SNAPSHOT</version>
+               </dependency>
+
+       </dependencies>
+
+       <build>
+               <plugins>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-compiler-plugin</artifactId>
+                               <configuration>
+                                       <source>1.5</source>
+                                       <target>1.5</target>
+                                       <debug>true</debug>
+                                       <optimize>true</optimize>
+                                       
<showDeprecations>true</showDeprecations>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-jar-plugin</artifactId>
+                               <configuration>
+                                       <archive>
+                                               <manifestFile>
+                                                       
${basedir}/src/main/resources/META-INF/MANIFEST.MF
+                                               </manifestFile>
+                                       </archive>
+                               </configuration>
+                       </plugin>
+
+                       <plugin>
+                               <artifactId>maven-surefire-plugin</artifactId>
+                               <configuration>
+                                       <excludes></excludes>
+                               </configuration>
+                       </plugin>
+
+               </plugins>
+       </build>
+
+</project>


Reply via email to