Author: norman
Date: Thu May  6 17:39:32 2010
New Revision: 941824

URL: http://svn.apache.org/viewvc?rev=941824&view=rev
Log:
Add impl module for generic implementation code. Part of PROTOCOLS-3

Added:
    james/protocols/trunk/impl/
    james/protocols/trunk/impl/pom.xml
    james/protocols/trunk/impl/src/
    james/protocols/trunk/impl/src/main/
    james/protocols/trunk/impl/src/main/java/
Modified:
    james/protocols/trunk/pom.xml

Added: james/protocols/trunk/impl/pom.xml
URL: 
http://svn.apache.org/viewvc/james/protocols/trunk/impl/pom.xml?rev=941824&view=auto
==============================================================================
--- james/protocols/trunk/impl/pom.xml (added)
+++ james/protocols/trunk/impl/pom.xml Thu May  6 17:39:32 2010
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="ISO-8859-15"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.    
+-->
+<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";>
+  <parent>
+    <artifactId>james-protocols</artifactId>
+    <groupId>org.apache.james</groupId>
+    <version>1.1-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.james.protocols</groupId>
+  <artifactId>protocols-impl</artifactId>
+  <name>Apache JAMES Protocols Implementation</name>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.james.protocols</groupId>
+      <artifactId>protocols-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.netty</groupId>
+      <artifactId>netty</artifactId>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

Modified: james/protocols/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/james/protocols/trunk/pom.xml?rev=941824&r1=941823&r2=941824&view=diff
==============================================================================
--- james/protocols/trunk/pom.xml (original)
+++ james/protocols/trunk/pom.xml Thu May  6 17:39:32 2010
@@ -35,6 +35,7 @@
   <modules>
     <module>api</module>
     <module>smtp</module>
+    <module>impl</module>
     <!-- 
     <module>pop3</module>
     -->
@@ -65,6 +66,14 @@
     </repository>
    
 
+    <!-- netty -->
+    <repository>
+      <id>repository.jboss.org</id>
+      <url>http://repository.jboss.org/maven2</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
   </repositories>
   
   <build>
@@ -230,7 +239,11 @@
         <artifactId>commons-codec</artifactId>
         <version>1.4</version>
       </dependency>
-
+      <dependency>
+        <groupId>org.jboss.netty</groupId>
+        <artifactId>netty</artifactId>
+        <version>3.1.5.GA</version>
+      </dependency>
       <dependency>
         <groupId>junit</groupId>
         <artifactId>junit</artifactId>



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to