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 ba...@apache.org on 2010/01/30 13:57:50 UTC

svn commit: r904773 - in /james/server/trunk: avalon-user-function/pom.xml core-function/pom.xml domain-api/pom.xml jcr-store/pom.xml pom.xml remotemanager-function/pom.xml smtpserver-function/pom.xml

Author: bago
Date: Sat Jan 30 12:57:49 2010
New Revision: 904773

URL: http://svn.apache.org/viewvc?rev=904773&view=rev
Log:
Fix m2 dependencies: updated activemq to 5.3.0 (avoid incubator dependencies) and added some missing test scoped dependencies around.

Modified:
    james/server/trunk/avalon-user-function/pom.xml
    james/server/trunk/core-function/pom.xml
    james/server/trunk/domain-api/pom.xml
    james/server/trunk/jcr-store/pom.xml
    james/server/trunk/pom.xml
    james/server/trunk/remotemanager-function/pom.xml
    james/server/trunk/smtpserver-function/pom.xml

Modified: james/server/trunk/avalon-user-function/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/avalon-user-function/pom.xml?rev=904773&r1=904772&r2=904773&view=diff
==============================================================================
--- james/server/trunk/avalon-user-function/pom.xml (original)
+++ james/server/trunk/avalon-user-function/pom.xml Sat Jan 30 12:57:49 2010
@@ -84,6 +84,16 @@
     </dependency>
 
     <dependency>
+      <groupId>commons-dbcp</groupId>
+      <artifactId>commons-dbcp</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.derby</groupId>
+      <artifactId>derby</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <scope>test</scope>

Modified: james/server/trunk/core-function/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/core-function/pom.xml?rev=904773&r1=904772&r2=904773&view=diff
==============================================================================
--- james/server/trunk/core-function/pom.xml (original)
+++ james/server/trunk/core-function/pom.xml Sat Jan 30 12:57:49 2010
@@ -103,5 +103,15 @@
       <artifactId>geronimo-annotation_1.0_spec</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>commons-dbcp</groupId>
+      <artifactId>commons-dbcp</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.derby</groupId>
+      <artifactId>derby</artifactId>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 </project>

Modified: james/server/trunk/domain-api/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/domain-api/pom.xml?rev=904773&r1=904772&r2=904773&view=diff
==============================================================================
--- james/server/trunk/domain-api/pom.xml (original)
+++ james/server/trunk/domain-api/pom.xml Sat Jan 30 12:57:49 2010
@@ -37,6 +37,5 @@
       <groupId>javax.mail</groupId>
       <artifactId>mail</artifactId>
     </dependency>
-
   </dependencies>
 </project>
\ No newline at end of file

Modified: james/server/trunk/jcr-store/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/jcr-store/pom.xml?rev=904773&r1=904772&r2=904773&view=diff
==============================================================================
--- james/server/trunk/jcr-store/pom.xml (original)
+++ james/server/trunk/jcr-store/pom.xml Sat Jan 30 12:57:49 2010
@@ -87,6 +87,16 @@
     <dependency>
       <groupId>org.apache.james</groupId>
       <artifactId>james-server-user-library</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.h2database</groupId>
+      <artifactId>h2</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>james-server-user-library</artifactId>
       <type>test-jar</type>
       <scope>test</scope>
     </dependency>

Modified: james/server/trunk/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/pom.xml?rev=904773&r1=904772&r2=904773&view=diff
==============================================================================
--- james/server/trunk/pom.xml (original)
+++ james/server/trunk/pom.xml Sat Jan 30 12:57:49 2010
@@ -874,7 +874,7 @@
     <dependency>
       <groupId>org.apache.activemq</groupId>
       <artifactId>activemq-core</artifactId>
-      <version>4.1.1</version>
+      <version>5.3.0</version>
     </dependency>
     
     <dependency>

Modified: james/server/trunk/remotemanager-function/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/remotemanager-function/pom.xml?rev=904773&r1=904772&r2=904773&view=diff
==============================================================================
--- james/server/trunk/remotemanager-function/pom.xml (original)
+++ james/server/trunk/remotemanager-function/pom.xml Sat Jan 30 12:57:49 2010
@@ -101,6 +101,11 @@
     </dependency>
     <dependency>
       <groupId>org.apache.james</groupId>
+      <artifactId>james-server-core-library</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
       <artifactId>james-server-user-library</artifactId>
       <scope>test</scope>
     </dependency>

Modified: james/server/trunk/smtpserver-function/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/smtpserver-function/pom.xml?rev=904773&r1=904772&r2=904773&view=diff
==============================================================================
--- james/server/trunk/smtpserver-function/pom.xml (original)
+++ james/server/trunk/smtpserver-function/pom.xml Sat Jan 30 12:57:49 2010
@@ -151,5 +151,10 @@
    	  <groupId>junit</groupId>
       <artifactId>junit</artifactId>
     </dependency>
+    <dependency>
+      <groupId>dnsjava</groupId>
+      <artifactId>dnsjava</artifactId>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 </project>



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


Re: svn commit: r904773 - in /james/server/trunk: avalon-user-function/pom.xml core-function/pom.xml domain-api/pom.xml jcr-store/pom.xml pom.xml remotemanager-function/pom.xml smtpserver-function/pom.xml

Posted by Norman Maurer <no...@apache.org>.
Thx a bunch....

Bye
Norman
2010/1/30, bago@apache.org <ba...@apache.org>:
> Author: bago
> Date: Sat Jan 30 12:57:49 2010
> New Revision: 904773
>
> URL: http://svn.apache.org/viewvc?rev=904773&view=rev
> Log:
> Fix m2 dependencies: updated activemq to 5.3.0 (avoid incubator
> dependencies) and added some missing test scoped dependencies around.
>
> Modified:
>     james/server/trunk/avalon-user-function/pom.xml
>     james/server/trunk/core-function/pom.xml
>     james/server/trunk/domain-api/pom.xml
>     james/server/trunk/jcr-store/pom.xml
>     james/server/trunk/pom.xml
>     james/server/trunk/remotemanager-function/pom.xml
>     james/server/trunk/smtpserver-function/pom.xml
>
> Modified: james/server/trunk/avalon-user-function/pom.xml
> URL:
> http://svn.apache.org/viewvc/james/server/trunk/avalon-user-function/pom.xml?rev=904773&r1=904772&r2=904773&view=diff
> ==============================================================================
> --- james/server/trunk/avalon-user-function/pom.xml (original)
> +++ james/server/trunk/avalon-user-function/pom.xml Sat Jan 30 12:57:49 2010
> @@ -84,6 +84,16 @@
>      </dependency>
>
>      <dependency>
> +      <groupId>commons-dbcp</groupId>
> +      <artifactId>commons-dbcp</artifactId>
> +      <scope>test</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.apache.derby</groupId>
> +      <artifactId>derby</artifactId>
> +      <scope>test</scope>
> +    </dependency>
> +    <dependency>
>        <groupId>junit</groupId>
>        <artifactId>junit</artifactId>
>        <scope>test</scope>
>
> Modified: james/server/trunk/core-function/pom.xml
> URL:
> http://svn.apache.org/viewvc/james/server/trunk/core-function/pom.xml?rev=904773&r1=904772&r2=904773&view=diff
> ==============================================================================
> --- james/server/trunk/core-function/pom.xml (original)
> +++ james/server/trunk/core-function/pom.xml Sat Jan 30 12:57:49 2010
> @@ -103,5 +103,15 @@
>        <artifactId>geronimo-annotation_1.0_spec</artifactId>
>        <scope>test</scope>
>      </dependency>
> +    <dependency>
> +      <groupId>commons-dbcp</groupId>
> +      <artifactId>commons-dbcp</artifactId>
> +      <scope>test</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.apache.derby</groupId>
> +      <artifactId>derby</artifactId>
> +      <scope>test</scope>
> +    </dependency>
>    </dependencies>
>  </project>
>
> Modified: james/server/trunk/domain-api/pom.xml
> URL:
> http://svn.apache.org/viewvc/james/server/trunk/domain-api/pom.xml?rev=904773&r1=904772&r2=904773&view=diff
> ==============================================================================
> --- james/server/trunk/domain-api/pom.xml (original)
> +++ james/server/trunk/domain-api/pom.xml Sat Jan 30 12:57:49 2010
> @@ -37,6 +37,5 @@
>        <groupId>javax.mail</groupId>
>        <artifactId>mail</artifactId>
>      </dependency>
> -
>    </dependencies>
>  </project>
> \ No newline at end of file
>
> Modified: james/server/trunk/jcr-store/pom.xml
> URL:
> http://svn.apache.org/viewvc/james/server/trunk/jcr-store/pom.xml?rev=904773&r1=904772&r2=904773&view=diff
> ==============================================================================
> --- james/server/trunk/jcr-store/pom.xml (original)
> +++ james/server/trunk/jcr-store/pom.xml Sat Jan 30 12:57:49 2010
> @@ -87,6 +87,16 @@
>      <dependency>
>        <groupId>org.apache.james</groupId>
>        <artifactId>james-server-user-library</artifactId>
> +      <scope>test</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>com.h2database</groupId>
> +      <artifactId>h2</artifactId>
> +      <scope>test</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.apache.james</groupId>
> +      <artifactId>james-server-user-library</artifactId>
>        <type>test-jar</type>
>        <scope>test</scope>
>      </dependency>
>
> Modified: james/server/trunk/pom.xml
> URL:
> http://svn.apache.org/viewvc/james/server/trunk/pom.xml?rev=904773&r1=904772&r2=904773&view=diff
> ==============================================================================
> --- james/server/trunk/pom.xml (original)
> +++ james/server/trunk/pom.xml Sat Jan 30 12:57:49 2010
> @@ -874,7 +874,7 @@
>      <dependency>
>        <groupId>org.apache.activemq</groupId>
>        <artifactId>activemq-core</artifactId>
> -      <version>4.1.1</version>
> +      <version>5.3.0</version>
>      </dependency>
>
>      <dependency>
>
> Modified: james/server/trunk/remotemanager-function/pom.xml
> URL:
> http://svn.apache.org/viewvc/james/server/trunk/remotemanager-function/pom.xml?rev=904773&r1=904772&r2=904773&view=diff
> ==============================================================================
> --- james/server/trunk/remotemanager-function/pom.xml (original)
> +++ james/server/trunk/remotemanager-function/pom.xml Sat Jan 30 12:57:49
> 2010
> @@ -101,6 +101,11 @@
>      </dependency>
>      <dependency>
>        <groupId>org.apache.james</groupId>
> +      <artifactId>james-server-core-library</artifactId>
> +      <scope>test</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.apache.james</groupId>
>        <artifactId>james-server-user-library</artifactId>
>        <scope>test</scope>
>      </dependency>
>
> Modified: james/server/trunk/smtpserver-function/pom.xml
> URL:
> http://svn.apache.org/viewvc/james/server/trunk/smtpserver-function/pom.xml?rev=904773&r1=904772&r2=904773&view=diff
> ==============================================================================
> --- james/server/trunk/smtpserver-function/pom.xml (original)
> +++ james/server/trunk/smtpserver-function/pom.xml Sat Jan 30 12:57:49 2010
> @@ -151,5 +151,10 @@
>     	  <groupId>junit</groupId>
>        <artifactId>junit</artifactId>
>      </dependency>
> +    <dependency>
> +      <groupId>dnsjava</groupId>
> +      <artifactId>dnsjava</artifactId>
> +      <scope>test</scope>
> +    </dependency>
>    </dependencies>
>  </project>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
> For additional commands, e-mail: server-dev-help@james.apache.org
>
>

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