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 2009/03/05 11:55:26 UTC

svn commit: r750417 - in /james/protocols/imap/trunk: api/pom.xml jpa/pom.xml mailbox/pom.xml message/pom.xml pom.xml processor/pom.xml stage/pom.xml

Author: bago
Date: Thu Mar  5 10:55:26 2009
New Revision: 750417

URL: http://svn.apache.org/viewvc?rev=750417&view=rev
Log:
after jmock upgrading modules need to know they depend on jmock-juni3 artifact.
added org.apache.openjpa:openjpa and javax.persistence:persistence-api artifacts to dependency management, stage and jpa module.

Modified:
    james/protocols/imap/trunk/api/pom.xml
    james/protocols/imap/trunk/jpa/pom.xml
    james/protocols/imap/trunk/mailbox/pom.xml
    james/protocols/imap/trunk/message/pom.xml
    james/protocols/imap/trunk/pom.xml
    james/protocols/imap/trunk/processor/pom.xml
    james/protocols/imap/trunk/stage/pom.xml

Modified: james/protocols/imap/trunk/api/pom.xml
URL: http://svn.apache.org/viewvc/james/protocols/imap/trunk/api/pom.xml?rev=750417&r1=750416&r2=750417&view=diff
==============================================================================
--- james/protocols/imap/trunk/api/pom.xml (original)
+++ james/protocols/imap/trunk/api/pom.xml Thu Mar  5 10:55:26 2009
@@ -47,5 +47,10 @@
       <artifactId>jmock</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>jmock</groupId>
+      <artifactId>jmock-junit3</artifactId>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 </project>

Modified: james/protocols/imap/trunk/jpa/pom.xml
URL: http://svn.apache.org/viewvc/james/protocols/imap/trunk/jpa/pom.xml?rev=750417&r1=750416&r2=750417&view=diff
==============================================================================
--- james/protocols/imap/trunk/jpa/pom.xml (original)
+++ james/protocols/imap/trunk/jpa/pom.xml Thu Mar  5 10:55:26 2009
@@ -66,6 +66,15 @@
     </dependency>
     
     <dependency>
+      <groupId>javax.persistence</groupId>
+      <artifactId>persistence-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.openjpa</groupId>
+      <artifactId>openjpa</artifactId>
+    </dependency>
+    
+    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <scope>test</scope>

Modified: james/protocols/imap/trunk/mailbox/pom.xml
URL: http://svn.apache.org/viewvc/james/protocols/imap/trunk/mailbox/pom.xml?rev=750417&r1=750416&r2=750417&view=diff
==============================================================================
--- james/protocols/imap/trunk/mailbox/pom.xml (original)
+++ james/protocols/imap/trunk/mailbox/pom.xml Thu Mar  5 10:55:26 2009
@@ -54,5 +54,10 @@
       <artifactId>jmock</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>jmock</groupId>
+      <artifactId>jmock-junit3</artifactId>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 </project>

Modified: james/protocols/imap/trunk/message/pom.xml
URL: http://svn.apache.org/viewvc/james/protocols/imap/trunk/message/pom.xml?rev=750417&r1=750416&r2=750417&view=diff
==============================================================================
--- james/protocols/imap/trunk/message/pom.xml (original)
+++ james/protocols/imap/trunk/message/pom.xml Thu Mar  5 10:55:26 2009
@@ -75,5 +75,10 @@
       <artifactId>jmock</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>jmock</groupId>
+      <artifactId>jmock-junit3</artifactId>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 </project>

Modified: james/protocols/imap/trunk/pom.xml
URL: http://svn.apache.org/viewvc/james/protocols/imap/trunk/pom.xml?rev=750417&r1=750416&r2=750417&view=diff
==============================================================================
--- james/protocols/imap/trunk/pom.xml (original)
+++ james/protocols/imap/trunk/pom.xml Thu Mar  5 10:55:26 2009
@@ -58,8 +58,8 @@
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
           <optimize>true</optimize>
-          <source>1.4</source>
-          <target>1.4</target>
+          <source>1.5</source>
+          <target>1.5</target>
         </configuration>
       </plugin>
       <plugin>
@@ -465,7 +465,7 @@
       <version>2.5.1</version>
       <scope>test</scope>
     </dependency>
-        <dependency>
+    <dependency>
       <groupId>jmock</groupId>
       <artifactId>jmock-junit3</artifactId>
       <version>2.5.1</version>
@@ -483,12 +483,6 @@
       <scope>runtime</scope>
     </dependency>
     <dependency>
-      <groupId>jmock</groupId>
-      <artifactId>jmock</artifactId>
-      <version>1.1.0</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
       <groupId>org.apache.derby</groupId>
       <artifactId>derby</artifactId>
       <version>10.2.2.0</version>
@@ -527,6 +521,16 @@
         </exclusion>
       </exclusions>
     </dependency>
+    <dependency>
+      <groupId>javax.persistence</groupId>
+      <artifactId>persistence-api</artifactId>
+      <version>1.0.2</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.openjpa</groupId>
+      <artifactId>openjpa</artifactId>
+      <version>1.2.0</version>
+    </dependency>
     </dependencies>
   </dependencyManagement>
 

Modified: james/protocols/imap/trunk/processor/pom.xml
URL: http://svn.apache.org/viewvc/james/protocols/imap/trunk/processor/pom.xml?rev=750417&r1=750416&r2=750417&view=diff
==============================================================================
--- james/protocols/imap/trunk/processor/pom.xml (original)
+++ james/protocols/imap/trunk/processor/pom.xml Thu Mar  5 10:55:26 2009
@@ -76,5 +76,10 @@
       <artifactId>jmock</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>jmock</groupId>
+      <artifactId>jmock-junit3</artifactId>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 </project>

Modified: james/protocols/imap/trunk/stage/pom.xml
URL: http://svn.apache.org/viewvc/james/protocols/imap/trunk/stage/pom.xml?rev=750417&r1=750416&r2=750417&view=diff
==============================================================================
--- james/protocols/imap/trunk/stage/pom.xml (original)
+++ james/protocols/imap/trunk/stage/pom.xml Thu Mar  5 10:55:26 2009
@@ -102,6 +102,18 @@
       <groupId>jmock</groupId>
       <artifactId>jmock</artifactId>
     </dependency>
+    <dependency>
+      <groupId>jmock</groupId>
+      <artifactId>jmock-junit3</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.persistence</groupId>
+      <artifactId>persistence-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.openjpa</groupId>
+      <artifactId>openjpa</artifactId>
+    </dependency>
     
     <dependency>
        <groupId>org.apache.derby</groupId>



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