You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by no...@apache.org on 2010/06/11 15:46:39 UTC

svn commit: r953697 - in /james/server/trunk: ./ core-function/ domain-api/src/main/java/org/apache/james/api/dnsservice/ domain-api/src/main/java/org/apache/james/api/domainlist/ domain-api/src/test/java/org/apache/james/api/dnsservice/ domain-api/src...

Author: norman
Date: Fri Jun 11 13:46:39 2010
New Revision: 953697

URL: http://svn.apache.org/viewvc?rev=953697&view=rev
Log:
Move classes only used for testing to the test module

Added:
    james/server/trunk/domain-api/src/test/java/org/apache/james/api/dnsservice/AbstractDNSServer.java
      - copied unchanged from r942003, james/server/trunk/domain-api/src/main/java/org/apache/james/api/dnsservice/AbstractDNSServer.java
    james/server/trunk/domain-api/src/test/java/org/apache/james/api/domainlist/
    james/server/trunk/domain-api/src/test/java/org/apache/james/api/domainlist/SimpleDomainList.java
      - copied unchanged from r942003, james/server/trunk/domain-api/src/main/java/org/apache/james/api/domainlist/SimpleDomainList.java
Removed:
    james/server/trunk/domain-api/src/main/java/org/apache/james/api/dnsservice/AbstractDNSServer.java
    james/server/trunk/domain-api/src/main/java/org/apache/james/api/domainlist/SimpleDomainList.java
Modified:
    james/server/trunk/core-function/pom.xml
    james/server/trunk/imapserver/pom.xml
    james/server/trunk/mailets/pom.xml
    james/server/trunk/pom.xml
    james/server/trunk/pop3server/pom.xml
    james/server/trunk/remotemanager/pom.xml
    james/server/trunk/smtpserver/pom.xml

Modified: james/server/trunk/core-function/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/core-function/pom.xml?rev=953697&r1=953696&r2=953697&view=diff
==============================================================================
--- james/server/trunk/core-function/pom.xml (original)
+++ james/server/trunk/core-function/pom.xml Fri Jun 11 13:46:39 2010
@@ -111,5 +111,11 @@
       <artifactId>junit</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>james-server-domain-api</artifactId>
+      <scope>test</scope>
+      <type>test-jar</type>
+    </dependency>
   </dependencies>
 </project>

Modified: james/server/trunk/imapserver/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/imapserver/pom.xml?rev=953697&r1=953696&r2=953697&view=diff
==============================================================================
--- james/server/trunk/imapserver/pom.xml (original)
+++ james/server/trunk/imapserver/pom.xml Fri Jun 11 13:46:39 2010
@@ -105,5 +105,11 @@
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
     </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>james-server-domain-api</artifactId>
+      <scope>test</scope>
+      <type>test-jar</type>
+    </dependency>
   </dependencies>
 </project>

Modified: james/server/trunk/mailets/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/mailets/pom.xml?rev=953697&r1=953696&r2=953697&view=diff
==============================================================================
--- james/server/trunk/mailets/pom.xml (original)
+++ james/server/trunk/mailets/pom.xml Fri Jun 11 13:46:39 2010
@@ -126,5 +126,11 @@
       <classifier>tests</classifier>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>james-server-domain-api</artifactId>
+      <scope>test</scope>
+      <type>test-jar</type>
+    </dependency>
   </dependencies>
 </project>

Modified: james/server/trunk/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/pom.xml?rev=953697&r1=953696&r2=953697&view=diff
==============================================================================
--- james/server/trunk/pom.xml (original)
+++ james/server/trunk/pom.xml Fri Jun 11 13:46:39 2010
@@ -341,6 +341,13 @@
     </dependency>
     <dependency>
       <groupId>org.apache.james</groupId>
+      <artifactId>james-server-domain-api</artifactId>
+      <version>${pom.version}</version>
+      <scope>test</scope>
+      <type>test-jar</type>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
       <artifactId>james-server-core-library</artifactId>
       <version>${pom.version}</version>
     </dependency>

Modified: james/server/trunk/pop3server/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/pop3server/pom.xml?rev=953697&r1=953696&r2=953697&view=diff
==============================================================================
--- james/server/trunk/pop3server/pom.xml (original)
+++ james/server/trunk/pop3server/pom.xml Fri Jun 11 13:46:39 2010
@@ -128,6 +128,13 @@
     </dependency>
     <dependency>
       <groupId>org.apache.james</groupId>
+      <artifactId>james-server-domain-api</artifactId>
+      <scope>test</scope>
+      <type>test-jar</type>
+    </dependency>
+    
+    <dependency>
+      <groupId>org.apache.james</groupId>
       <artifactId>james-server-core-function</artifactId>
       <scope>runtime</scope>
     </dependency>

Modified: james/server/trunk/remotemanager/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/remotemanager/pom.xml?rev=953697&r1=953696&r2=953697&view=diff
==============================================================================
--- james/server/trunk/remotemanager/pom.xml (original)
+++ james/server/trunk/remotemanager/pom.xml Fri Jun 11 13:46:39 2010
@@ -128,6 +128,12 @@
     </dependency>
     <dependency>
       <groupId>org.apache.james</groupId>
+      <artifactId>james-server-domain-api</artifactId>
+      <scope>test</scope>
+      <type>test-jar</type>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
       <artifactId>james-server-core-function</artifactId>
       <scope>runtime</scope>
     </dependency>

Modified: james/server/trunk/smtpserver/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/smtpserver/pom.xml?rev=953697&r1=953696&r2=953697&view=diff
==============================================================================
--- james/server/trunk/smtpserver/pom.xml (original)
+++ james/server/trunk/smtpserver/pom.xml Fri Jun 11 13:46:39 2010
@@ -153,5 +153,11 @@
       <artifactId>junit</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>james-server-domain-api</artifactId>
+      <scope>test</scope>
+      <type>test-jar</type>
+    </dependency>
   </dependencies>
 </project>



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org