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 2007/07/04 18:10:23 UTC

svn commit: r553249 - in /james/server/trunk: ./ core-library/ experimental-seda-imap-function/ imap-codec-library/ imap-command-library/ imap-mailbox-processor-function/ imapserver-function/ mordred-library/ phoenix-deployment/ stage/commons-lang/poms...

Author: bago
Date: Wed Jul  4 09:10:21 2007
New Revision: 553249

URL: http://svn.apache.org/viewvc?view=rev&rev=553249
Log:
Update for m2 build//site generation

Added:
    james/server/trunk/experimental-seda-imap-function/pom.xml
    james/server/trunk/imap-codec-library/pom.xml
    james/server/trunk/imap-command-library/pom.xml
    james/server/trunk/imap-mailbox-processor-function/pom.xml
    james/server/trunk/stage/commons-lang/poms/
    james/server/trunk/stage/commons-lang/poms/commons-lang-2.1.pom
    james/server/trunk/stage/jdom/jars/jdom-1.0.jar   (contents, props changed)
      - copied, changed from r553199, james/server/trunk/stage/jdom/jars/jdom.jar
    james/server/trunk/stage/jdom/poms/
    james/server/trunk/stage/jdom/poms/jdom-1.0.pom
    james/server/trunk/stage/junit/poms/
    james/server/trunk/stage/junit/poms/junit-3.8.1.pom
    james/server/trunk/stage/org.apache.james/poms/james-parent-1.1.pom
    james/server/trunk/stage/org.apache.james/poms/james-project-1.1.pom
    james/server/trunk/stage/oro/poms/
    james/server/trunk/stage/oro/poms/oro-2.0.8.pom
Removed:
    james/server/trunk/stage/jdom/jars/jdom.jar
Modified:
    james/server/trunk/   (props changed)
    james/server/trunk/core-library/pom.xml
    james/server/trunk/imapserver-function/pom.xml
    james/server/trunk/include.properties
    james/server/trunk/mordred-library/pom.xml
    james/server/trunk/phoenix-deployment/   (props changed)
    james/server/trunk/phoenix-deployment/pom.xml
    james/server/trunk/pom.xml
    james/server/trunk/torque-mailboxmanager-function/pom.xml

Propchange: james/server/trunk/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Wed Jul  4 09:10:21 2007
@@ -1,2 +1,6 @@
 .*
 dist
+
+target
+
+bin

Modified: james/server/trunk/core-library/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/core-library/pom.xml?view=diff&rev=553249&r1=553248&r2=553249
==============================================================================
--- james/server/trunk/core-library/pom.xml (original)
+++ james/server/trunk/core-library/pom.xml Wed Jul  4 09:10:21 2007
@@ -15,6 +15,13 @@
       <version>3.0-SNAPSHOT</version>
     </dependency>
 
+		<!-- TODO remove this dependency -->
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>james-server-imap-api</artifactId>
+      <version>3.0-SNAPSHOT</version>
+    </dependency>
+
     <dependency>
       <groupId>org.bouncycastle</groupId>
       <artifactId>bcmail-jdk14</artifactId>
@@ -49,6 +56,12 @@
       <groupId>avalon-framework</groupId>
       <artifactId>avalon-framework-api</artifactId>
       <version>4.3</version>
+      <exclusions>
+      	<exclusion>
+      		<artifactId>avalon-logkit</artifactId>
+      		<groupId>avalon-logkit</groupId>
+      	</exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>commons-logging</groupId>

Added: james/server/trunk/experimental-seda-imap-function/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/experimental-seda-imap-function/pom.xml?view=auto&rev=553249
==============================================================================
--- james/server/trunk/experimental-seda-imap-function/pom.xml (added)
+++ james/server/trunk/experimental-seda-imap-function/pom.xml Wed Jul  4 09:10:21 2007
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="ISO-8859-15"?><project>
+  <parent>
+    <artifactId>james-server</artifactId>
+    <groupId>org.apache.james</groupId>
+    <version>3.0-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.james</groupId>
+  <artifactId>james-server-experimental-seda-imap-function</artifactId>
+  <name>Apache JAMES Server *Experimental* IMAP function</name>
+  <dependencies>
+    <dependency>
+      <groupId>javax.mail</groupId>
+      <artifactId>mail</artifactId>
+      <version>1.4.1ea-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>mailet</artifactId>
+      <version>3.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>james-server-core-library</artifactId>
+      <version>3.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>james-server-imap-codec-library</artifactId>
+      <version>3.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>james-server-imap-command-library</artifactId>
+      <version>3.0-SNAPSHOT</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

Added: james/server/trunk/imap-codec-library/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/imap-codec-library/pom.xml?view=auto&rev=553249
==============================================================================
--- james/server/trunk/imap-codec-library/pom.xml (added)
+++ james/server/trunk/imap-codec-library/pom.xml Wed Jul  4 09:10:21 2007
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="ISO-8859-15"?><project>
+  <parent>
+    <artifactId>james-server</artifactId>
+    <groupId>org.apache.james</groupId>
+    <version>3.0-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.james</groupId>
+  <artifactId>james-server-imap-codec-library</artifactId>
+  <name>Apache JAMES Server IMAP Codec Library</name>
+  <dependencies>
+    <dependency>
+      <groupId>javax.mail</groupId>
+      <artifactId>mail</artifactId>
+      <version>1.4.1ea-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>mailet</artifactId>
+      <version>3.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>james-server-imap-api</artifactId>
+      <version>3.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+      <exclusions>
+      	<exclusion>
+      		<artifactId>avalon-logkit</artifactId>
+      		<groupId>avalon-logkit</groupId>
+      	</exclusion>
+      </exclusions>
+    </dependency>
+    
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>jmock</groupId>
+      <artifactId>jmock</artifactId>
+      <version>1.1.0</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

Added: james/server/trunk/imap-command-library/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/imap-command-library/pom.xml?view=auto&rev=553249
==============================================================================
--- james/server/trunk/imap-command-library/pom.xml (added)
+++ james/server/trunk/imap-command-library/pom.xml Wed Jul  4 09:10:21 2007
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="ISO-8859-15"?><project>
+  <parent>
+    <artifactId>james-server</artifactId>
+    <groupId>org.apache.james</groupId>
+    <version>3.0-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.james</groupId>
+  <artifactId>james-server-imap-command-library</artifactId>
+  <name>Apache JAMES Server IMAP Command Library</name>
+  <dependencies>
+    <dependency>
+      <groupId>javax.mail</groupId>
+      <artifactId>mail</artifactId>
+      <version>1.4.1ea-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>mailet</artifactId>
+      <version>3.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>james-server-imap-api</artifactId>
+      <version>3.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+      <exclusions>
+      	<exclusion>
+      		<artifactId>avalon-logkit</artifactId>
+      		<groupId>avalon-logkit</groupId>
+      	</exclusion>
+      </exclusions>
+    </dependency>
+
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

Added: james/server/trunk/imap-mailbox-processor-function/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/imap-mailbox-processor-function/pom.xml?view=auto&rev=553249
==============================================================================
--- james/server/trunk/imap-mailbox-processor-function/pom.xml (added)
+++ james/server/trunk/imap-mailbox-processor-function/pom.xml Wed Jul  4 09:10:21 2007
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="ISO-8859-15"?><project>
+  <parent>
+    <artifactId>james-server</artifactId>
+    <groupId>org.apache.james</groupId>
+    <version>3.0-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.james</groupId>
+  <artifactId>james-server-imap-mailbox-processor-function</artifactId>
+  <name>Apache JAMES Server IMAP Mailbox Processor function</name>
+  <dependencies>
+    <dependency>
+      <groupId>javax.mail</groupId>
+      <artifactId>mail</artifactId>
+      <version>1.4.1ea-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>mailet</artifactId>
+      <version>3.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+      <exclusions>
+      	<exclusion>
+      		<artifactId>avalon-logkit</artifactId>
+      		<groupId>avalon-logkit</groupId>
+      	</exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>james-server-imap-api</artifactId>
+      <version>3.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>james-server-imapmailbox-library</artifactId>
+      <version>3.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>james-server-imap-codec-library</artifactId>
+      <version>3.0-SNAPSHOT</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

Modified: james/server/trunk/imapserver-function/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/imapserver-function/pom.xml?view=diff&rev=553249&r1=553248&r2=553249
==============================================================================
--- james/server/trunk/imapserver-function/pom.xml (original)
+++ james/server/trunk/imapserver-function/pom.xml Wed Jul  4 09:10:21 2007
@@ -36,6 +36,11 @@
       <artifactId>james-server-imap-api</artifactId>
       <version>3.0-SNAPSHOT</version>
     </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>james-server-imap-codec-library</artifactId>
+      <version>3.0-SNAPSHOT</version>
+    </dependency>
     
     <dependency>
       <groupId>junit</groupId>

Modified: james/server/trunk/include.properties
URL: http://svn.apache.org/viewvc/james/server/trunk/include.properties?view=diff&rev=553249&r1=553248&r2=553249
==============================================================================
--- james/server/trunk/include.properties (original)
+++ james/server/trunk/include.properties Wed Jul  4 09:10:21 2007
@@ -176,7 +176,7 @@
 mstor.jar=${path.lib.mstor}/${jarname.mstor.jar}
 jarname.commons-logging.jar=commons-logging-1.1.jar
 commons-logging.jar=${path.lib.commonslogging}/${jarname.commons-logging.jar}
-jarname.jdom.jar=jdom.jar
+jarname.jdom.jar=jdom-1.0.jar
 jdom.jar=${path.lib.jdom}/${jarname.jdom.jar}
 jarname.xstream.jar=xstream-1.2.jar
 xstream.jar=${path.lib.xstream}/${jarname.xstream.jar}

Modified: james/server/trunk/mordred-library/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/mordred-library/pom.xml?view=diff&rev=553249&r1=553248&r2=553249
==============================================================================
--- james/server/trunk/mordred-library/pom.xml (original)
+++ james/server/trunk/mordred-library/pom.xml Wed Jul  4 09:10:21 2007
@@ -14,6 +14,61 @@
       <artifactId>cornerstone-datasources-api</artifactId>
       <version>2.2.1</version>
     </dependency>
+    <dependency>
+      <groupId>cornerstone-datasources</groupId>
+      <artifactId>cornerstone-datasources-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-datasource</groupId>
+      <artifactId>excalibur-datasource</artifactId>
+      <version>2.1</version>
+      <exclusions>
+        <exclusion>
+          <artifactId>excalibur-pool-instrumented</artifactId>
+          <groupId>excalibur-pool</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>excalibur-component</artifactId>
+          <groupId>excalibur-component</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>excalibur-testcase</artifactId>
+          <groupId>excalibur-component</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>excalibur-fortress</artifactId>
+          <groupId>excalibur-fortress</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>excalibur-fortress-container-api</artifactId>
+          <groupId>excalibur-fortress</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>excalibur-logger</artifactId>
+          <groupId>excalibur-logger</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>hsqldb</artifactId>
+          <groupId>hsqldb</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>excalibur-fortress-meta</artifactId>
+          <groupId>excalibur-fortress</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>cornerstone-datasources</groupId>
+      <artifactId>cornerstone-datasources-impl</artifactId>
+      <version>2.1-patched</version>
+      <exclusions>
+        <exclusion>
+          <artifactId>d-haven-managed-pool</artifactId>
+          <groupId>d-haven-managed-pool</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
     
     <dependency>
       <groupId>junit</groupId>

Propchange: james/server/trunk/phoenix-deployment/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Wed Jul  4 09:10:21 2007
@@ -4,3 +4,5 @@
 dist
 target
 *.log
+
+.settings

Modified: james/server/trunk/phoenix-deployment/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/phoenix-deployment/pom.xml?view=diff&rev=553249&r1=553248&r2=553249
==============================================================================
--- james/server/trunk/phoenix-deployment/pom.xml (original)
+++ james/server/trunk/phoenix-deployment/pom.xml Wed Jul  4 09:10:21 2007
@@ -83,7 +83,16 @@
       <groupId>org.apache.james</groupId>
       <artifactId>james-server-torque-mailboxmanager-function</artifactId>
       <version>3.0-SNAPSHOT</version>
-      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>james-server-imap-mailbox-processor-function</artifactId>
+      <version>3.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>james-server-experimental-seda-imap-function</artifactId>
+      <version>3.0-SNAPSHOT</version>
     </dependency>
     
     <dependency>

Modified: james/server/trunk/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/pom.xml?view=diff&rev=553249&r1=553248&r2=553249
==============================================================================
--- james/server/trunk/pom.xml (original)
+++ james/server/trunk/pom.xml Wed Jul  4 09:10:21 2007
@@ -2,7 +2,8 @@
   <parent>
     <artifactId>james-server-root</artifactId>
     <groupId>org.apache.james</groupId>
-    <version>1.0-SNAPSHOT</version>
+    <version>1.0</version>
+    <relativePath>../james-project/project/server/pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.james</groupId>
@@ -14,6 +15,10 @@
   <inceptionYear>2002</inceptionYear>
   <packaging>pom</packaging>
   <modules>
+    <module>imap-api</module>
+    <module>imapmailbox-library</module>
+    <module>imap-codec-library</module>
+    <module>imap-command-library</module>
     <module>core-library</module>
     <module>mordred-library</module>
     <module>smtpserver-function</module>
@@ -22,11 +27,11 @@
     <module>spoolmanager-function</module>
     <module>remotemanager-function</module>
     <module>fetchmail-function</module>
-    <module>phoenix-deployment</module>
-    <module>imap-api</module>
-    <module>imapmailbox-library</module>
+    <module>imap-mailbox-processor-function</module>
     <module>torque-mailboxmanager-function</module>
     <module>imapserver-function</module>
+    <module>experimental-seda-imap-function</module>
+    <module>phoenix-deployment</module>
   </modules>
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/james/server/trunk</connection>
@@ -98,6 +103,7 @@
     </repository>
     
     <!-- Override parent POM to remove repositories -->
+    <!-- 
     <repository>
       <id>central</id>
       <name>Apache Main M2 Repository</name>
@@ -120,6 +126,7 @@
         <enabled>false</enabled>
       </snapshots>
     </repository>
+     -->
   </repositories>
   <reporting>
     <plugins>

Added: james/server/trunk/stage/commons-lang/poms/commons-lang-2.1.pom
URL: http://svn.apache.org/viewvc/james/server/trunk/stage/commons-lang/poms/commons-lang-2.1.pom?view=auto&rev=553249
==============================================================================
--- james/server/trunk/stage/commons-lang/poms/commons-lang-2.1.pom (added)
+++ james/server/trunk/stage/commons-lang/poms/commons-lang-2.1.pom Wed Jul  4 09:10:21 2007
@@ -0,0 +1,364 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>commons-lang</groupId>
+  <artifactId>commons-lang</artifactId>
+  <name>Lang</name>
+  <version>2.1</version>
+  <description>Commons.Lang, a package of Java utility classes for the
+    classes that are in java.lang's hierarchy, or are considered to be so
+    standard as to justify existence in java.lang.</description>
+  <url>http://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</url>
+  <issueManagement>
+    <url>http://issues.apache.org/bugzilla/</url>
+  </issueManagement>
+  <ciManagement>
+    <notifiers>
+      <notifier>
+        <address>commons-dev@jakarta.apache.org</address>
+      </notifier>
+    </notifiers>
+  </ciManagement>
+  <inceptionYear>2001</inceptionYear>
+  <mailingLists>
+    <mailingList>
+      <name>Commons Dev List</name>
+      <subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe>
+      <unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org</archive>
+    </mailingList>
+    <mailingList>
+      <name>Commons User List</name>
+      <subscribe>commons-user-subscribe@jakarta.apache.org</subscribe>
+      <unsubscribe>commons-user-unsubscribe@jakarta.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org</archive>
+    </mailingList>
+  </mailingLists>
+  <developers>
+    <developer>
+      <id>dlr</id>
+      <name>Daniel Rall</name>
+      <email>dlr@finemaltcoding.com</email>
+      <organization>CollabNet, Inc.</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>scolebourne</id>
+      <name>Stephen Colebourne</name>
+      <email>scolebourne@joda.org</email>
+      <organization>SITA ATS Ltd</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>0</timezone>
+    </developer>
+    <developer>
+      <id>bayard</id>
+      <name>Henri Yandell</name>
+      <email>bayard@generationjava.com</email>
+      <organization></organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>scaswell</id>
+      <name>Steven Caswell</name>
+      <email>stevencaswell@apache.org</email>
+      <organization></organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>-5</timezone>
+    </developer>
+    <developer>
+      <id>rdonkin</id>
+      <name>Robert Burrell Donkin</name>
+      <email>rdonkin@apache.org</email>
+      <organization></organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>ggregory</id>
+      <name>Gary D. Gregory</name>
+      <email>ggregory@seagullsw.com</email>
+      <organization>Seagull Software</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>-8</timezone>
+    </developer>
+    <developer>
+      <id>psteitz</id>
+      <name>Phil Steitz</name>
+      <email>phil@steitz.com</email>
+      <organization></organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>fredrik</id>
+      <name>Fredrik Westermarck</name>
+      <email></email>
+      <organization></organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+  </developers>
+  <contributors>
+    <contributor>
+      <name>C. Scott Ananian</name>
+    </contributor>
+    <contributor>
+      <name>Chris Audley</name>
+    </contributor>
+    <contributor>
+      <name>Stephane Bailliez</name>
+    </contributor>
+    <contributor>
+      <name>Michael Becke</name>
+    </contributor>
+    <contributor>
+      <name>Ola Berg</name>
+    </contributor>
+    <contributor>
+      <name>Stefan Bodewig</name>
+    </contributor>
+    <contributor>
+      <name>Janek Bogucki</name>
+    </contributor>
+    <contributor>
+      <name>Mike Bowler</name>
+    </contributor>
+    <contributor>
+      <name>Sean Brown</name>
+    </contributor>
+    <contributor>
+      <name>Alexander Day Chaffee</name>
+    </contributor>
+    <contributor>
+      <name>Al Chou</name>
+    </contributor>
+    <contributor>
+      <name>Greg Coladonato</name>
+    </contributor>
+    <contributor>
+      <name>Maarten Coene</name>
+    </contributor>
+    <contributor>
+      <name>Justin Couch</name>
+    </contributor>
+    <contributor>
+      <name>Michael Davey</name>
+    </contributor>
+    <contributor>
+      <name>Norm Deane</name>
+    </contributor>
+    <contributor>
+      <name>Ringo De Smet</name>
+    </contributor>
+    <contributor>
+      <name>Russel Dittmar</name>
+    </contributor>
+    <contributor>
+      <name>Steve Downey</name>
+    </contributor>
+    <contributor>
+      <name>Matthias Eichel</name>
+    </contributor>
+    <contributor>
+      <name>Christopher Elkins</name>
+    </contributor>
+    <contributor>
+      <name>Chris Feldhacker</name>
+    </contributor>
+    <contributor>
+      <name>Pete Gieser</name>
+    </contributor>
+    <contributor>
+      <name>Jason Gritman</name>
+    </contributor>
+    <contributor>
+      <name>Matthew Hawthorne</name>
+    </contributor>
+    <contributor>
+      <name>Michael Heuer</name>
+    </contributor>
+    <contributor>
+      <name>Marc Johnson</name>
+    </contributor>
+    <contributor>
+      <name>Tetsuya Kaneuchi</name>
+    </contributor>
+    <contributor>
+      <name>Nissim Karpenstein</name>
+    </contributor>
+    <contributor>
+      <name>Ed Korthof</name>
+    </contributor>
+    <contributor>
+      <name>Holger Krauth</name>
+    </contributor>
+    <contributor>
+      <name>Rafal Krupinski</name>
+    </contributor>
+    <contributor>
+      <name>Rafal Krzewski</name>
+    </contributor>
+    <contributor>
+      <name>Craig R. McClanahan</name>
+    </contributor>
+    <contributor>
+      <name>Rand McNeely</name>
+    </contributor>
+    <contributor>
+      <name>Nikolay Metchev</name>
+    </contributor>
+    <contributor>
+      <name>Kasper Nielsen</name>
+    </contributor>
+    <contributor>
+      <name>Tim O'Brien</name>
+    </contributor>
+    <contributor>
+      <name>Brian S O'Neill</name>
+    </contributor>
+    <contributor>
+      <name>Andrew C. Oliver</name>
+    </contributor>
+    <contributor>
+      <name>Moritz Petersen</name>
+    </contributor>
+    <contributor>
+      <name>Dmitri Plotnikov</name>
+    </contributor>
+    <contributor>
+      <name>Neeme Praks</name>
+    </contributor>
+    <contributor>
+      <name>Eric Pugh</name>
+    </contributor>
+    <contributor>
+      <name>Travis Reeder</name>
+    </contributor>
+    <contributor>
+      <name>Antony Riley</name>
+    </contributor>
+    <contributor>
+      <name>Scott Sanders</name>
+    </contributor>
+    <contributor>
+      <name>Ralph Schaer</name>
+    </contributor>
+    <contributor>
+      <name>Henning P. Schmiedehausen</name>
+    </contributor>
+    <contributor>
+      <name>Sean Schofield</name>
+    </contributor>
+    <contributor>
+      <name>Ville Skytta</name>
+    </contributor>
+    <contributor>
+      <name>Jan Sorensen</name>
+    </contributor>
+    <contributor>
+      <name>Glen Stampoultzis</name>
+    </contributor>
+    <contributor>
+      <name>Scott Stanchfield</name>
+    </contributor>
+    <contributor>
+      <name>Jon S. Stevens</name>
+    </contributor>
+    <contributor>
+      <name>Sean C. Sullivan</name>
+    </contributor>
+    <contributor>
+      <name>Ashwin Suresh</name>
+    </contributor>
+    <contributor>
+      <name>Helge Tesgaard</name>
+    </contributor>
+    <contributor>
+      <name>Arun Mammen Thomas</name>
+    </contributor>
+    <contributor>
+      <name>Masato Tezuka</name>
+    </contributor>
+    <contributor>
+      <name>Jeff Varszegi</name>
+    </contributor>
+    <contributor>
+      <name>Chris Webb</name>
+    </contributor>
+    <contributor>
+      <name>Mario Winterer</name>
+    </contributor>
+  </contributors>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>/LICENSE.txt</url>
+    </license>
+  </licenses>
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/${pom.artifactId.substring(8)}/trunk</connection>
+    <url>http://svn.apache.org/viewcvs/jakarta/commons/proper/${pom.artifactId.substring(8)}/trunk</url>
+  </scm>
+  <organization>
+    <name>The Apache Software Foundation</name>
+    <url>http://jakarta.apache.org</url>
+  </organization>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+    <testSourceDirectory>src/test</testSourceDirectory>
+    <testResources>
+      <testResource>
+        <directory>${pom.build.unitTestSourceDirectory}</directory>
+        <includes>
+          <include>**/*.xml</include>
+        </includes>
+      </testResource>
+    </testResources>
+    <plugins>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <includes>
+            <include>**/*TestSuite.java</include>
+          </includes>
+          <excludes>
+            <exclude>**/AllLangTestSuite.java</exclude>
+            <exclude>org/apache/commons/lang/text/**/*.java</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <distributionManagement>
+    <repository>
+      <id>default</id>
+      <name>Default Repository</name>
+      <url>file:///www/jakarta.apache.org/builds/jakarta-commons/${pom.artifactId.substring(8)}/</url>
+    </repository>
+    <site>
+      <id>default</id>
+      <name>Default Site</name>
+      <url>scp://jakarta.apache.org//www/jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</url>
+    </site>
+  </distributionManagement>
+</project>
\ No newline at end of file

Copied: james/server/trunk/stage/jdom/jars/jdom-1.0.jar (from r553199, james/server/trunk/stage/jdom/jars/jdom.jar)
URL: http://svn.apache.org/viewvc/james/server/trunk/stage/jdom/jars/jdom-1.0.jar?view=diff&rev=553249&p1=james/server/trunk/stage/jdom/jars/jdom.jar&r1=553199&p2=james/server/trunk/stage/jdom/jars/jdom-1.0.jar&r2=553249
==============================================================================
Binary files - no diff available.

Propchange: james/server/trunk/stage/jdom/jars/jdom-1.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/server/trunk/stage/jdom/poms/jdom-1.0.pom
URL: http://svn.apache.org/viewvc/james/server/trunk/stage/jdom/poms/jdom-1.0.pom?view=auto&rev=553249
==============================================================================
--- james/server/trunk/stage/jdom/poms/jdom-1.0.pom (added)
+++ james/server/trunk/stage/jdom/poms/jdom-1.0.pom Wed Jul  4 09:10:21 2007
@@ -0,0 +1,40 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>jdom</groupId>
+  <artifactId>jdom</artifactId>
+  <version>1.0</version>
+  <dependencies>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xercesImpl</artifactId>
+      <version>2.6.0</version>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.0.b2</version>
+      <optional>true</optional>
+    </dependency>
+    <!-- should be replaced jaxen-jdom provided with jdom -->
+    <dependency>
+      <groupId>jaxen</groupId>
+      <artifactId>jaxen</artifactId>
+      <version>1.0-FCS</version>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>saxpath</groupId>
+      <artifactId>saxpath</artifactId>
+      <version>1.0-FCS</version>
+      <optional>true</optional>
+    </dependency>
+    <!-- should be replaced by xalan.jar from jdom, their version was 2.5.D1 -->
+    <dependency>
+      <groupId>xalan</groupId>
+      <artifactId>xalan</artifactId>
+      <version>2.5.0</version>
+      <optional>true</optional>
+    </dependency>
+  </dependencies>
+</project>

Added: james/server/trunk/stage/junit/poms/junit-3.8.1.pom
URL: http://svn.apache.org/viewvc/james/server/trunk/stage/junit/poms/junit-3.8.1.pom?view=auto&rev=553249
==============================================================================
--- james/server/trunk/stage/junit/poms/junit-3.8.1.pom (added)
+++ james/server/trunk/stage/junit/poms/junit-3.8.1.pom Wed Jul  4 09:10:21 2007
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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 ">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>junit</groupId>
+  <artifactId>junit</artifactId>
+  <version>3.8.1</version>
+  <name>JUnit</name>
+  <url>http://junit.org</url>
+  <description>
+    JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
+  </description>
+  <organization>
+    <name>JUnit</name>
+    <url>http://www.junit.org</url>
+  </organization>
+  <licenses>
+    <license>
+      <name>Common Public License Version 1.0</name>
+      <url>http://www.opensource.org/licenses/cpl1.0.txt</url>
+    </license>
+  </licenses>
+  <scm>
+    <url>http://junit.cvs.sourceforge.net/junit/</url>
+  </scm>
+  <dependencies>
+  </dependencies>
+</project>

Added: james/server/trunk/stage/org.apache.james/poms/james-parent-1.1.pom
URL: http://svn.apache.org/viewvc/james/server/trunk/stage/org.apache.james/poms/james-parent-1.1.pom?view=auto&rev=553249
==============================================================================
--- james/server/trunk/stage/org.apache.james/poms/james-parent-1.1.pom (added)
+++ james/server/trunk/stage/org.apache.james/poms/james-parent-1.1.pom Wed Jul  4 09:10:21 2007
@@ -0,0 +1,385 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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">
+  <!--
+    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.    
+  -->
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.james</groupId>
+  <artifactId>james-parent</artifactId>
+  <name>Apache JAMES Parent POM</name>
+  <version>1.1</version>
+  <description>
+    The Apache JAMES Parent POM
+  </description>
+
+  <prerequisites>
+    <maven>2.0.6</maven>
+  </prerequisites>
+  
+  <modules>
+    <module>maven-skin</module>
+    <module>project</module>
+  </modules>
+
+  <url>http://james.apache.org/</url>
+  <inceptionYear>2006</inceptionYear>
+  <packaging>pom</packaging>
+
+  <dependencies>
+  </dependencies>
+
+  <organization>
+    <name>The Apache Software Foundation</name>
+    <url>http://www.apache.org</url>
+  </organization>
+
+  <licenses>
+    <license>
+      <name>Apache License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <issueManagement>
+    <system>JIRA</system>
+    <url>http://issues.apache.org/jira/browse/JAMES</url>
+  </issueManagement>
+
+  <developers>
+    <developer>
+      <id>bago</id>
+      <name>Stefano Bagnara</name>
+      <email>bago at apache.org</email>
+      <timezone>2</timezone>
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>norman</id>
+      <name>Norman Maurer</name>
+      <email>norman at apache.org</email>
+      <timezone>2</timezone>
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>serge</id>
+      <name>Serge Knystautas</name>
+      <email>sergek at lokitech.com</email>
+      <timezone />
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>benrdf</id>
+      <name>Bernd Fondermann</name>
+      <email>bf_jak at brainlounge.de</email>
+      <timezone />
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>sbrewin</id>
+      <name>Steve Brewin</name>
+      <email>sbrewin at synsys.com</email>
+      <timezone />
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>hilmer</id>
+      <!-- This is not correctly handled by maven release plugin -->
+      <!-- <name>S&#248;ren Hilmer</name> -->
+      <name>Soren Hilmer</name>
+      <email>sh at widetrail.dk</email>
+      <timezone />
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>noel</id>
+      <name>Noel J. Bergman</name>
+      <email>noel at devtech.com</email>
+      <timezone />
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>danny</id>
+      <name>Danny Angus</name>
+      <email>danny at apache.org</email>
+      <timezone />
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>adc</id>
+      <name>Alan D. Cabrera</name>
+      <email>list at toolazydogs.com</email>
+      <timezone>-8</timezone>
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>vincenzo</id>
+      <name>Vincenzo Gianferrari Pini</name>
+      <email>vincenzo.gianferraripini at praxis.it</email>
+      <timezone />
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>rdonkin</id>
+      <name>Robert Burrell Donkin</name>
+      <email>rdonkin at apache.org</email>
+      <timezone />
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>niklas</id>
+      <name>Niklas Therning</name>
+      <email>niklas(at)apache(dot)org</email>
+      <organization>Trillian AB</organization>
+    </developer>
+    <developer>
+      <id>jcheng</id>
+      <name>Joe Cheng</name>
+      <email>joe(at)joecheng(dot)com</email>
+      <properties>
+        <description>
+          Former author to the mime4j product
+        </description>
+      </properties>
+    </developer>
+  </developers>
+
+  <contributors>
+    <contributor>
+      <name>Rob Oxspring</name>
+      <properties>
+        <description>
+          Contributed to the mime4j product
+        </description>
+      </properties>
+    </contributor>
+    <contributor>
+      <name>Roger Fullerton</name>
+      <properties>
+        <description>
+          Wrote spfjava, the first spf implementation in java
+        </description>
+      </properties>
+    </contributor>
+  </contributors>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/james/project/tags/james-parent-1.1</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/james/project/tags/james-parent-1.1</developerConnection>
+    <url>http://svn.apache.org/viewvc/james/project/tags/james-parent-1.1</url>
+  </scm>
+
+  <distributionManagement>
+    <repository>
+      <id>apache.releases</id>
+      <name>Apache Release Distribution Repository</name>
+      <url>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
+    </repository>
+    <snapshotRepository>
+      <id>apache.snapshots</id>
+      <name>Apache Development Snapshot Repository</name>
+      <url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
+    </snapshotRepository>
+    <!-- Each project must override this with their own -->
+    <site>
+      <id>james-parent-website</id>
+      <url>scp://minotaur.apache.org/www/james.apache.org/parent/</url>
+    </site>
+  </distributionManagement>
+
+  <repositories>
+    <repository>
+      <id>central</id>
+      <url>http://repo1.maven.org/maven2</url>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
+    <repository>
+      <id>apache.releases</id>
+      <name>Apache Main M2 Repository</name>
+      <url>http://people.apache.org/repo/m2-ibiblio-rsync-repository</url>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
+    <repository>
+      <id>apache.snapshots</id>
+      <name>Apache Snapshot Repository</name>
+      <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+  
+  <profiles>
+    <!-- parent profile: used to find skin dependency in stage -->
+    <profile>
+      <id>parent</id>
+      <repositories>
+        <repository>
+          <id>local-james-parent-stage</id>
+          <name>Apache JAMES parent stage repository folder</name>
+          <url>file://${basedir}/stage</url>
+          <layout>legacy</layout>
+          <releases>
+            <enabled>true</enabled>
+            <checksumPolicy>ignore</checksumPolicy>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+            <checksumPolicy>ignore</checksumPolicy>
+          </snapshots>
+        </repository>
+      </repositories>
+    </profile>
+    <!-- local profile: used to ignore remote repositories in a local build -->
+    <profile>
+      <id>local</id>
+      <repositories>
+        <repository>
+          <id>central</id>
+          <url>http://repo1.maven.org/maven2</url>
+          <releases>
+            <enabled>false</enabled>
+          </releases>
+          <snapshots>
+            <enabled>false</enabled>
+          </snapshots>
+        </repository>
+        <repository>
+          <id>apache.releases</id>
+          <name>Apache Main M2 Repository</name>
+          <url>http://people.apache.org/repo/m2-ibiblio-rsync-repository</url>
+          <releases>
+            <enabled>false</enabled>
+          </releases>
+          <snapshots>
+            <enabled>false</enabled>
+          </snapshots>
+        </repository>
+        <repository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshot Repository</name>
+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+          <releases>
+            <enabled>false</enabled>
+          </releases>
+          <snapshots>
+            <enabled>false</enabled>
+          </snapshots>
+        </repository>
+      </repositories>
+    </profile>
+    <!-- START SNIPPET: release-profile -->
+    <profile>
+      <id>release</id>
+      <build>
+        <plugins>
+          <!-- We want to sign the artifact, the POM, and all attached artifacts -->
+          <plugin>
+            <artifactId>maven-gpg-plugin</artifactId>
+            <version>1.0-alpha-3</version>
+            <configuration>
+              <passphrase>${gpg.passphrase}</passphrase>
+            </configuration>
+            <executions>
+              <execution>
+                <id>sign-artifacts</id>
+                <phase>verify</phase>
+                <goals>
+                  <goal>sign</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <!-- We want to deploy the artifact to a staging location for perusal -->
+          <plugin>
+            <inherited>true</inherited>
+            <artifactId>maven-deploy-plugin</artifactId>
+            <version>2.3</version>
+            <configuration>
+              <altDeploymentRepository>${deploy.altRepository}</altDeploymentRepository>
+              <updateReleaseInfo>true</updateReleaseInfo>
+            </configuration>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-source-plugin</artifactId>
+            <version>2.0.2</version>
+            <executions>
+              <execution>
+                <id>attach-sources</id>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <version>2.2</version>
+            <executions>
+              <execution>
+                <id>attach-javadocs</id>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    <!-- END SNIPPET: release-profile -->
+  </profiles>  
+
+</project>
\ No newline at end of file

Added: james/server/trunk/stage/org.apache.james/poms/james-project-1.1.pom
URL: http://svn.apache.org/viewvc/james/server/trunk/stage/org.apache.james/poms/james-project-1.1.pom?view=auto&rev=553249
==============================================================================
--- james/server/trunk/stage/org.apache.james/poms/james-project-1.1.pom (added)
+++ james/server/trunk/stage/org.apache.james/poms/james-project-1.1.pom Wed Jul  4 09:10:21 2007
@@ -0,0 +1,70 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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">
+  <!--
+    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.    
+  -->
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.james</groupId>
+  <artifactId>james-project</artifactId>
+  <name>Apache JAMES Project</name>
+  <version>1.1</version>
+  <description>
+    The Apache JAMES Project
+  </description>
+  
+  <parent>
+    <groupId>org.apache.james</groupId>
+    <artifactId>james-parent</artifactId>
+    <version>1.1</version>
+  </parent>
+
+  <modules>
+    <module>server</module>
+  </modules>
+  
+  <url>http://james.apache.org/</url>
+  <inceptionYear>2006</inceptionYear>
+  <packaging>pom</packaging>
+
+  <dependencies>
+  </dependencies>
+
+  <issueManagement>
+    <system>JIRA</system>
+    <url>http://issues.apache.org/jira/browse/JAMES</url>
+  </issueManagement>
+
+  <distributionManagement>
+    <!-- Each project must override this with their own -->
+    <site>
+      <id>james-website</id>
+      <url>scp://minotaur.apache.org/www/james.apache.org/</url>
+    </site>
+  </distributionManagement>
+
+  <mailingLists>
+    <mailingList>
+      <name>Apache James Website Developement</name>
+      <subscribe>site-dev-subscribe@james.apache.org</subscribe>
+      <unsubscribe>site-dev-unsubscribe@james.apache.org</unsubscribe>
+      <post>site-dev@james.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/james-site-dev/</archive>
+    </mailingList>
+  </mailingLists>
+  
+</project>
\ No newline at end of file

Added: james/server/trunk/stage/oro/poms/oro-2.0.8.pom
URL: http://svn.apache.org/viewvc/james/server/trunk/stage/oro/poms/oro-2.0.8.pom?view=auto&rev=553249
==============================================================================
--- james/server/trunk/stage/oro/poms/oro-2.0.8.pom (added)
+++ james/server/trunk/stage/oro/poms/oro-2.0.8.pom Wed Jul  4 09:10:21 2007
@@ -0,0 +1,6 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>oro</groupId>
+  <artifactId>oro</artifactId>
+  <version>2.0.8</version>
+</project>

Modified: james/server/trunk/torque-mailboxmanager-function/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/torque-mailboxmanager-function/pom.xml?view=diff&rev=553249&r1=553248&r2=553249
==============================================================================
--- james/server/trunk/torque-mailboxmanager-function/pom.xml (original)
+++ james/server/trunk/torque-mailboxmanager-function/pom.xml Wed Jul  4 09:10:21 2007
@@ -32,6 +32,12 @@
       <version>3.0-SNAPSHOT</version>
     </dependency>
     <dependency>
+      <groupId>commons-configuration</groupId>
+      <artifactId>commons-configuration</artifactId>
+      <version>1.1</version>
+    </dependency>
+    
+    <dependency>
       <groupId>torque</groupId>
       <artifactId>torque</artifactId>
       <version>3.3-RC1</version>



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