Modified: james/server/trunk/pom.xml URL: http://svn.apache.org/viewvc/james/server/trunk/pom.xml?rev=999802&r1=999801&r2=999802&view=diff ============================================================================== --- james/server/trunk/pom.xml (original) +++ james/server/trunk/pom.xml Wed Sep 22 08:31:34 2010 @@ -37,14 +37,19 @@ <module>core-api</module> <module>user-api</module> <module>domain-api</module> + <module>mail-api</module> <module>dnsserver-api</module> <module>dnsserver</module> <module>user-function</module> <module>user-library</module> + <module>mail-library</module> <module>domain-library</module> <module>domain-function</module> <module>core-library</module> <module>management</module> + <module>file</module> + <module>jdbc</module> + <module>mail-jcr</module> <module>imapserver</module> <module>smtpserver</module> <module>lmtpserver</module> @@ -394,6 +399,38 @@ </dependency> <dependency> <groupId>org.apache.james</groupId> + <artifactId>james-server-mail-api</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.james</groupId> + <artifactId>james-server-mail-library</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.james</groupId> + <artifactId>james-server-mail-library</artifactId> + <version>${project.version}</version> + <type>test-jar</type> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.james</groupId> + <artifactId>james-server-mail-file</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.james</groupId> + <artifactId>james-server-mail-jdbc</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.james</groupId> + <artifactId>james-server-mail-jcr</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.james</groupId> <artifactId>james-server-core-library</artifactId> <version>${project.version}</version> </dependency> @@ -411,6 +448,31 @@ </dependency> <dependency> <groupId>org.apache.james</groupId> + <artifactId>james-server-api</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.james</groupId> + <artifactId>james-server-library</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.james</groupId> + <artifactId>james-server-file</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.james</groupId> + <artifactId>james-server-jdbc</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.james</groupId> + <artifactId>james-server-jcr</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.james</groupId> <artifactId>james-server-spool-api</artifactId> <version>${project.version}</version> </dependency> @@ -518,16 +580,6 @@ </dependency> <dependency> <groupId>org.apache.james</groupId> - <artifactId>apache-james-mailbox-file</artifactId> - <version>${imap.version}</version> - </dependency> - <dependency> - <groupId>org.apache.james</groupId> - <artifactId>apache-james-mailbox-jdbc</artifactId> - <version>${imap.version}</version> - </dependency> - <dependency> - <groupId>org.apache.james</groupId> <artifactId>apache-james-mailbox-store</artifactId> <version>${imap.version}</version> <exclusions> @@ -585,7 +637,7 @@ <dependency> <groupId>org.bouncycastle</groupId> - <artifactId>bcmail-jdk15</artifactId> + <artifactId>bcjdk15</artifactId> <version>1.45</version> </dependency> <dependency>
Modified: james/server/trunk/pop3server/pom.xml URL: http://svn.apache.org/viewvc/james/server/trunk/pop3server/pom.xml?rev=999802&r1=999801&r2=999802&view=diff ============================================================================== --- james/server/trunk/pop3server/pom.xml (original) +++ james/server/trunk/pop3server/pom.xml Wed Sep 22 08:31:34 2010 @@ -99,6 +99,11 @@ <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-core-library</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> Modified: james/server/trunk/remotemanager/pom.xml URL: http://svn.apache.org/viewvc/james/server/trunk/remotemanager/pom.xml?rev=999802&r1=999801&r2=999802&view=diff ============================================================================== --- james/server/trunk/remotemanager/pom.xml (original) +++ james/server/trunk/remotemanager/pom.xml Wed Sep 22 08:31:34 2010 @@ -17,7 +17,7 @@ specific language governing permissions and limitations under the License. --> -<project> +<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"> <parent> <artifactId>james-server</artifactId> <groupId>org.apache.james</groupId> @@ -90,6 +90,11 @@ </dependency> <!-- Test dependencies --> <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.apache.james</groupId> <artifactId>james-server-core-library</artifactId> <type>test-jar</type> @@ -108,13 +113,9 @@ <scope>test</scope> </dependency> <dependency> - <groupId>commons-net</groupId> - <artifactId>commons-net</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> + <groupId>org.apache.james</groupId> + <artifactId>james-server-mail-library</artifactId> + <type>test-jar</type> <scope>test</scope> </dependency> <dependency> @@ -129,5 +130,10 @@ <type>test-jar</type> <scope>test</scope> </dependency> + <dependency> + <groupId>commons-net</groupId> + <artifactId>commons-net</artifactId> + <scope>test</scope> + </dependency> </dependencies> </project> Modified: james/server/trunk/smtpserver/pom.xml URL: http://svn.apache.org/viewvc/james/server/trunk/smtpserver/pom.xml?rev=999802&r1=999801&r2=999802&view=diff ============================================================================== --- james/server/trunk/smtpserver/pom.xml (original) +++ james/server/trunk/smtpserver/pom.xml Wed Sep 22 08:31:34 2010 @@ -98,7 +98,6 @@ <artifactId>jsr250-api</artifactId> </dependency> - <!-- Test dependencies --> <dependency> <artifactId>dnsjava</artifactId> @@ -147,7 +146,7 @@ </dependency> <dependency> <groupId>org.apache.james</groupId> - <artifactId>james-server-core-library</artifactId> + <artifactId>james-server-mail-library</artifactId> <scope>test</scope> <type>test-jar</type> </dependency> Modified: james/server/trunk/spool-api/pom.xml URL: http://svn.apache.org/viewvc/james/server/trunk/spool-api/pom.xml?rev=999802&r1=999801&r2=999802&view=diff ============================================================================== --- james/server/trunk/spool-api/pom.xml (original) +++ james/server/trunk/spool-api/pom.xml Wed Sep 22 08:31:34 2010 @@ -30,7 +30,7 @@ <dependencies> <dependency> <groupId>org.apache.james</groupId> - <artifactId>apache-james-mailbox-api</artifactId> + <artifactId>james-server-mail-api</artifactId> </dependency> </dependencies> </project> Modified: james/server/trunk/spring-common/pom.xml URL: http://svn.apache.org/viewvc/james/server/trunk/spring-common/pom.xml?rev=999802&r1=999801&r2=999802&view=diff ============================================================================== --- james/server/trunk/spring-common/pom.xml (original) +++ james/server/trunk/spring-common/pom.xml Wed Sep 22 08:31:34 2010 @@ -85,12 +85,12 @@ <artifactId>james-server-core-api</artifactId> </dependency> <dependency> - <groupId>org.apache.james.protocols</groupId> - <artifactId>protocols-api</artifactId> + <groupId>org.apache.james</groupId> + <artifactId>james-server-mail-library</artifactId> </dependency> <dependency> - <groupId>org.apache.james</groupId> - <artifactId>apache-james-mailbox-store</artifactId> + <groupId>org.apache.james.protocols</groupId> + <artifactId>protocols-api</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> Modified: james/server/trunk/spring-deployment/pom.xml URL: http://svn.apache.org/viewvc/james/server/trunk/spring-deployment/pom.xml?rev=999802&r1=999801&r2=999802&view=diff ============================================================================== --- james/server/trunk/spring-deployment/pom.xml (original) +++ james/server/trunk/spring-deployment/pom.xml Wed Sep 22 08:31:34 2010 @@ -537,12 +537,27 @@ </dependency> <dependency> <groupId>org.apache.james</groupId> - <artifactId>apache-james-mailbox-file</artifactId> + <artifactId>james-server-mail-api</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.james</groupId> - <artifactId>apache-james-mailbox-jdbc</artifactId> + <artifactId>james-server-mail-library</artifactId> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.james</groupId> + <artifactId>james-server-mail-file</artifactId> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.james</groupId> + <artifactId>james-server-mail-jdbc</artifactId> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.james</groupId> + <artifactId>james-server-mail-jcr</artifactId> <scope>runtime</scope> </dependency> <dependency> Modified: james/server/trunk/user-function/pom.xml URL: http://svn.apache.org/viewvc/james/server/trunk/user-function/pom.xml?rev=999802&r1=999801&r2=999802&view=diff ============================================================================== --- james/server/trunk/user-function/pom.xml (original) +++ james/server/trunk/user-function/pom.xml Wed Sep 22 08:31:34 2010 @@ -143,12 +143,6 @@ <scope>test</scope> </dependency> <dependency> - <groupId>org.apache.james</groupId> - <artifactId>james-server-core-library</artifactId> - <type>test-jar</type> - <scope>test</scope> - </dependency> - <dependency> <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> <scope>runtime</scope> @@ -189,5 +183,11 @@ <type>test-jar</type> <scope>test</scope> </dependency> + <dependency> + <groupId>org.apache.james</groupId> + <artifactId>james-server-mail-library</artifactId> + <type>test-jar</type> + <scope>test</scope> + </dependency> </dependencies> </project> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
