Author: manolo
Date: Thu May 24 07:41:46 2012
New Revision: 1342164

URL: http://svn.apache.org/viewvc?rev=1342164&view=rev
Log:
Change the groupId so as james-devels can deploy artifacts in apache maven repo

Modified:
    james/hupa/trunk/client/pom.xml
    
james/hupa/trunk/client/src/main/java/org/apache/hupa/client/CachingDispatchAsync.java
    james/hupa/trunk/mock/pom.xml
    james/hupa/trunk/pom.xml
    james/hupa/trunk/server/pom.xml
    james/hupa/trunk/shared/pom.xml
    james/hupa/trunk/widgets/pom.xml

Modified: james/hupa/trunk/client/pom.xml
URL: 
http://svn.apache.org/viewvc/james/hupa/trunk/client/pom.xml?rev=1342164&r1=1342163&r2=1342164&view=diff
==============================================================================
--- james/hupa/trunk/client/pom.xml (original)
+++ james/hupa/trunk/client/pom.xml Thu May 24 07:41:46 2012
@@ -21,7 +21,7 @@
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
     <modelVersion>4.0.0</modelVersion>
     <parent>
-        <groupId>org.apache.hupa</groupId>
+        <groupId>org.apache.james.hupa</groupId>
         <artifactId>hupa-parent</artifactId>
         <version>0.0.2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
@@ -32,19 +32,19 @@
     <description>A GWT based IMAP webmail</description>
     <dependencies>
         <dependency>
-            <groupId>org.apache.hupa</groupId>
+            <groupId>${project.groupId}</groupId>
             <artifactId>hupa-server</artifactId>
         </dependency>
         <dependency>
-            <groupId>org.apache.hupa</groupId>
+            <groupId>${project.groupId}</groupId>
             <artifactId>hupa-mock</artifactId>
         </dependency>
         <dependency>
-            <groupId>org.apache.hupa</groupId>
+            <groupId>${project.groupId}</groupId>
             <artifactId>hupa-shared</artifactId>
         </dependency>
         <dependency>
-            <groupId>org.apache.hupa</groupId>
+            <groupId>${project.groupId}</groupId>
             <artifactId>hupa-widgets</artifactId>
         </dependency>
         <dependency>

Modified: 
james/hupa/trunk/client/src/main/java/org/apache/hupa/client/CachingDispatchAsync.java
URL: 
http://svn.apache.org/viewvc/james/hupa/trunk/client/src/main/java/org/apache/hupa/client/CachingDispatchAsync.java?rev=1342164&r1=1342163&r2=1342164&view=diff
==============================================================================
--- 
james/hupa/trunk/client/src/main/java/org/apache/hupa/client/CachingDispatchAsync.java
 (original)
+++ 
james/hupa/trunk/client/src/main/java/org/apache/hupa/client/CachingDispatchAsync.java
 Thu May 24 07:41:46 2012
@@ -23,6 +23,7 @@ import java.util.HashMap;
 import java.util.HashSet;
 import java.util.Map;
 
+import org.apache.hupa.shared.rpc.FetchMessages;
 import org.apache.hupa.shared.rpc.GetMessageDetails;
 
 import net.customware.gwt.dispatch.client.ExceptionHandler;
@@ -82,6 +83,9 @@ public class CachingDispatchAsync extend
             return;
         } else {
             running.add(clz);
+            if (action instanceof FetchMessages) {
+                new RuntimeException().printStackTrace();
+            }
             super.execute(action, new AsyncCallback<R>() {
                 public void onFailure(Throwable caught) {
                     running.remove(clz);

Modified: james/hupa/trunk/mock/pom.xml
URL: 
http://svn.apache.org/viewvc/james/hupa/trunk/mock/pom.xml?rev=1342164&r1=1342163&r2=1342164&view=diff
==============================================================================
--- james/hupa/trunk/mock/pom.xml (original)
+++ james/hupa/trunk/mock/pom.xml Thu May 24 07:41:46 2012
@@ -23,7 +23,7 @@
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
     <modelVersion>4.0.0</modelVersion>
     <parent>
-        <groupId>org.apache.hupa</groupId>
+        <groupId>org.apache.james.hupa</groupId>
         <artifactId>hupa-parent</artifactId>
         <version>0.0.2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
@@ -34,7 +34,7 @@
     <description>Mock objects for hupa</description>
     <dependencies>
         <dependency>
-            <groupId>org.apache.hupa</groupId>
+            <groupId>${project.groupId}</groupId>
             <artifactId>hupa-shared</artifactId>
         </dependency>
         <dependency>

Modified: james/hupa/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/james/hupa/trunk/pom.xml?rev=1342164&r1=1342163&r2=1342164&view=diff
==============================================================================
--- james/hupa/trunk/pom.xml (original)
+++ james/hupa/trunk/pom.xml Thu May 24 07:41:46 2012
@@ -28,7 +28,7 @@
         <version>1.8.1</version>
         <relativePath></relativePath>
     </parent>
-    <groupId>org.apache.hupa</groupId>
+    <groupId>org.apache.james.hupa</groupId>
     <artifactId>hupa-parent</artifactId>
     <version>0.0.2-SNAPSHOT</version>
     <packaging>pom</packaging>
@@ -37,8 +37,8 @@
     <url>http://james.apache.org/hupa</url>
     <inceptionYear>2009</inceptionYear>
     <modules>
-        <module>mock</module>
         <module>shared</module>
+        <module>mock</module>
         <module>server</module>
         <module>widgets</module>
         <module>client</module>
@@ -90,23 +90,23 @@
     <dependencyManagement>
         <dependencies>
             <dependency>
-                <groupId>org.apache.hupa</groupId>
+                <groupId>${project.groupId}</groupId>
                 <artifactId>hupa-mock</artifactId>
                 <version>${project.version}</version>
                 <scope>${mock.scope}</scope>
             </dependency>
             <dependency>
-                <groupId>org.apache.hupa</groupId>
+                <groupId>${project.groupId}</groupId>
                 <artifactId>hupa-server</artifactId>
                 <version>${project.version}</version>
             </dependency>
             <dependency>
-                <groupId>org.apache.hupa</groupId>
+                <groupId>${project.groupId}</groupId>
                 <artifactId>hupa-shared</artifactId>
                 <version>${project.version}</version>
             </dependency>
             <dependency>
-                <groupId>org.apache.hupa</groupId>
+                <groupId>${project.groupId}</groupId>
                 <artifactId>hupa-widgets</artifactId>
                 <version>${project.version}</version>
                 <scope>provided</scope>

Modified: james/hupa/trunk/server/pom.xml
URL: 
http://svn.apache.org/viewvc/james/hupa/trunk/server/pom.xml?rev=1342164&r1=1342163&r2=1342164&view=diff
==============================================================================
--- james/hupa/trunk/server/pom.xml (original)
+++ james/hupa/trunk/server/pom.xml Thu May 24 07:41:46 2012
@@ -23,7 +23,7 @@
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
     <modelVersion>4.0.0</modelVersion>
     <parent>
-        <groupId>org.apache.hupa</groupId>
+        <groupId>org.apache.james.hupa</groupId>
         <artifactId>hupa-parent</artifactId>
         <version>0.0.2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
@@ -34,11 +34,11 @@
     <description>Servercode implementation to access IMAP Mailbox</description>
     <dependencies>
         <dependency>
-            <groupId>org.apache.hupa</groupId>
+            <groupId>${project.groupId}</groupId>
             <artifactId>hupa-mock</artifactId>
         </dependency>
         <dependency>
-            <groupId>org.apache.hupa</groupId>
+            <groupId>${project.groupId}</groupId>
             <artifactId>hupa-shared</artifactId>
         </dependency>
         <dependency>

Modified: james/hupa/trunk/shared/pom.xml
URL: 
http://svn.apache.org/viewvc/james/hupa/trunk/shared/pom.xml?rev=1342164&r1=1342163&r2=1342164&view=diff
==============================================================================
--- james/hupa/trunk/shared/pom.xml (original)
+++ james/hupa/trunk/shared/pom.xml Thu May 24 07:41:46 2012
@@ -23,7 +23,7 @@
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
     <modelVersion>4.0.0</modelVersion>
     <parent>
-        <groupId>org.apache.hupa</groupId>
+        <groupId>org.apache.james.hupa</groupId>
         <artifactId>hupa-parent</artifactId>
         <version>0.0.2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>

Modified: james/hupa/trunk/widgets/pom.xml
URL: 
http://svn.apache.org/viewvc/james/hupa/trunk/widgets/pom.xml?rev=1342164&r1=1342163&r2=1342164&view=diff
==============================================================================
--- james/hupa/trunk/widgets/pom.xml (original)
+++ james/hupa/trunk/widgets/pom.xml Thu May 24 07:41:46 2012
@@ -23,7 +23,7 @@
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
     <modelVersion>4.0.0</modelVersion>
     <parent>
-        <groupId>org.apache.hupa</groupId>
+        <groupId>org.apache.james.hupa</groupId>
         <artifactId>hupa-parent</artifactId>
         <version>0.0.2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>



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

Reply via email to