Restructured persistence modules into its own submodule

This commit is contained in:
Jonas Bonér 2010-01-02 22:53:11 +01:00
parent 2c560fe3ed
commit f0286dae9d
53 changed files with 71 additions and 152 deletions

View file

@ -14,11 +14,6 @@
</parent>
<dependencies>
<dependency>
<artifactId>akka-util</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
</dependency>
<dependency>
<artifactId>akka-core</artifactId>
<groupId>${project.groupId}</groupId>

View file

@ -16,11 +16,6 @@
<!-- Core deps -->
<dependencies>
<dependency>
<artifactId>akka-core</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
</dependency>
<dependency>
<artifactId>akka-rest</artifactId>
<groupId>${project.groupId}</groupId>
@ -33,11 +28,7 @@
<artifactId>grizzly-comet-webserver</artifactId>
<version>${grizzly.version}</version>
</dependency>
<!--dependency>
<groupId>com.sun.grizzly</groupId>
<artifactId>grizzly-comet-webserver</artifactId>
<version>${grizzly.version}</version>
</dependency-->
<!-- For Atmosphere -->
<dependency>
<groupId>javax.servlet</groupId>
@ -59,30 +50,5 @@
<artifactId>atmosphere-runtime</artifactId>
<version>${atmosphere.version}</version>
</dependency>
<!--dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-core</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-server</artifactId>
<version>${jersey.version}</version>
</dependency-->
<!--dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-json</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>jsr311-api</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>com.sun.jersey.contribs</groupId>
<artifactId>jersey-scala</artifactId>
<version>${jersey.version}</version>
</dependency-->
</dependencies>
</project>

View file

@ -16,11 +16,6 @@
<!-- akka deps -->
<dependencies>
<dependency>
<artifactId>akka-core</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
</dependency>
<dependency>
<artifactId>akka-rest</artifactId>
<groupId>${project.groupId}</groupId>

View file

@ -8,7 +8,7 @@
<packaging>jar</packaging>
<parent>
<artifactId>akka</artifactId>
<artifactId>akka-persistence-parent</artifactId>
<groupId>se.scalablesolutions.akka</groupId>
<version>0.6</version>
</parent>
@ -31,20 +31,6 @@
<artifactId>log4j</artifactId>
<version>1.2.13</version>
</dependency>
<!-- For Testing -->
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest</artifactId>
<version>1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

View file

@ -8,18 +8,12 @@
<packaging>jar</packaging>
<parent>
<artifactId>akka</artifactId>
<artifactId>akka-persistence-parent</artifactId>
<groupId>se.scalablesolutions.akka</groupId>
<version>0.6</version>
</parent>
<dependencies>
<dependency>
<artifactId>akka-core</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.facebook</groupId>
<artifactId>thrift</artifactId>
@ -30,20 +24,6 @@
<artifactId>commons-pool</artifactId>
<version>1.5.1</version>
</dependency>
<!-- For Testing -->
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest</artifactId>
<version>1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

View file

@ -0,0 +1,31 @@
<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>
<artifactId>akka-persistence-mongo</artifactId>
<name>Akka Persistence Mongo Module</name>
<packaging>jar</packaging>
<parent>
<artifactId>akka-persistence-parent</artifactId>
<groupId>se.scalablesolutions.akka</groupId>
<version>0.6</version>
</parent>
<dependencies>
<dependency>
<artifactId>akka-persistence-common</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
</dependency>
<!-- For Mongo -->
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>1.1</version>
</dependency>
</dependencies>
</project>

View file

@ -8,7 +8,7 @@
<packaging>jar</packaging>
<parent>
<artifactId>akka</artifactId>
<artifactId>akka-persistence-parent</artifactId>
<groupId>se.scalablesolutions.akka</groupId>
<version>0.6</version>
</parent>
@ -20,26 +20,12 @@
<version>${project.version}</version>
</dependency>
<!-- For Mongo -->
<!-- For Redis -->
<dependency>
<groupId>com.redis</groupId>
<artifactId>redisclient</artifactId>
<version>1.0.1</version>
</dependency>
<!-- For Testing -->
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest</artifactId>
<version>1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

View file

@ -2,10 +2,10 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>akka-persistence-mongo</artifactId>
<name>Akka Persistence Mongo Module</name>
<artifactId>akka-persistence-parent</artifactId>
<name>Akka Persistence Modules</name>
<packaging>jar</packaging>
<packaging>pom</packaging>
<parent>
<artifactId>akka</artifactId>
@ -13,20 +13,19 @@
<version>0.6</version>
</parent>
<modules>
<module>akka-persistence-common</module>
<module>akka-persistence-redis</module>
<module>akka-persistence-mongo</module>
<module>akka-persistence-cassandra</module>
</modules>
<dependencies>
<dependency>
<artifactId>akka-persistence-common</artifactId>
<artifactId>akka-core</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
</dependency>
<!-- For Mongo -->
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>1.1</version>
</dependency>
<!-- For Testing -->
<dependency>
<groupId>org.scalatest</groupId>
@ -41,5 +40,4 @@
<scope>test</scope>
</dependency>
</dependencies>
</project>

View file

@ -2,7 +2,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>
<artifactId>akka-samples-chat</artifactId>
<artifactId>akka-sample-chat</artifactId>
<name>Akka Chat Sample Module</name>
<packaging>jar</packaging>
@ -23,8 +23,8 @@
<phase>install</phase>
<configuration>
<tasks>
<copy file="target/akka-samples-chat-${project.version}.jar"
tofile="../../deploy/akka-samples-chat-${project.version}.jar"/>
<copy file="target/akka-sample-chat-${project.version}.jar"
tofile="../../deploy/akka-sample-chat-${project.version}.jar"/>
</tasks>
</configuration>
<goals>

View file

@ -2,8 +2,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>
<artifactId>akka-samples-lift</artifactId>
<name>Akka Lift Samples Module</name>
<artifactId>akka-sample-lift</artifactId>
<name>Akka Lift Sample Module</name>
<packaging>war</packaging>

View file

@ -2,8 +2,8 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>akka-samples-rest-java</artifactId>
<name>Akka REST Java Samples Module</name>
<artifactId>akka-sample-rest-java</artifactId>
<name>Akka REST Java Sample Module</name>
<packaging>jar</packaging>
@ -34,8 +34,8 @@
<phase>install</phase>
<configuration>
<tasks>
<copy file="target/akka-samples-rest-java-${project.version}.jar"
tofile="../../deploy/akka-samples-rest-java-${project.version}.jar"/>
<copy file="target/akka-sample-rest-java-${project.version}.jar"
tofile="../../deploy/akka-sample-rest-java-${project.version}.jar"/>
</tasks>
</configuration>
<goals>

View file

@ -2,8 +2,8 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>akka-samples-rest-scala</artifactId>
<name>Akka REST Scala Samples Module</name>
<artifactId>akka-sample-rest-scala</artifactId>
<name>Akka REST Scala Sample Module</name>
<packaging>jar</packaging>
@ -31,8 +31,8 @@
<phase>install</phase>
<configuration>
<tasks>
<copy file="target/akka-samples-rest-scala-${project.version}.jar"
tofile="../../deploy/akka-samples-rest-scala-${project.version}.jar"/>
<copy file="target/akka-sample-rest-scala-${project.version}.jar"
tofile="../../deploy/akka-sample-rest-scala-${project.version}.jar"/>
</tasks>
</configuration>
<goals>

View file

@ -2,7 +2,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>
<artifactId>akka-samples-security</artifactId>
<artifactId>akka-sample-security</artifactId>
<name>Akka Sample Security Module</name>
<packaging>jar</packaging>
@ -37,8 +37,8 @@
<phase>install</phase>
<configuration>
<tasks>
<copy file="target/akka-samples-security-${project.version}.jar"
tofile="../../deploy/akka-samples-security-${project.version}.jar"/>
<copy file="target/akka-sample-security-${project.version}.jar"
tofile="../../deploy/akka-sample-security-${project.version}.jar"/>
</tasks>
</configuration>
<goals>

View file

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>akka-samples-parent</artifactId>
<name>Akka Samples Module</name>
<name>Akka Sample Modules</name>
<packaging>pom</packaging>
@ -14,11 +14,11 @@
</parent>
<modules>
<module>akka-samples-chat</module>
<module>akka-samples-lift</module>
<module>akka-samples-security</module>
<module>akka-samples-rest-scala</module>
<module>akka-samples-rest-java</module>
<module>akka-sample-chat</module>
<module>akka-sample-lift</module>
<module>akka-sample-security</module>
<module>akka-sample-rest-scala</module>
<module>akka-sample-rest-java</module>
</modules>
<dependencies>

View file

@ -14,26 +14,11 @@
</parent>
<dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scala.version}</version>
</dependency>
<dependency>
<artifactId>akka-core</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
</dependency>
<dependency>
<artifactId>akka-persistence-cassandra</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
</dependency>
<dependency>
<artifactId>akka-util</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>jsr250-api</artifactId>

View file

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<name>Akka Transactors</name>
<name>Akka Project</name>
<artifactId>akka</artifactId>
<groupId>se.scalablesolutions.akka</groupId>
<version>0.6</version>
@ -51,10 +51,7 @@
<module>akka-util-java</module>
<module>akka-util</module>
<module>akka-core</module>
<module>akka-persistence-common</module>
<module>akka-persistence-cassandra</module>
<module>akka-persistence-mongo</module>
<module>akka-persistence-redis</module>
<module>akka-persistence</module>
<module>akka-rest</module>
<module>akka-comet</module>
<module>akka-amqp</module>