second phase

This commit is contained in:
peter hausel 2010-03-02 00:30:14 -05:00 committed by Jonas Bonér
parent 1eb647772f
commit b97b456d26
7 changed files with 2 additions and 112 deletions

4
.gitignore vendored
View file

@ -1,7 +1,7 @@
*~
*#
project/build/target
project/boot
*/project/build/target
*/project/boot
lib_managed
etags
TAGS

View file

@ -1,7 +0,0 @@
project.organization=se.scalablesolutions.akka
project.name=akka-core
project.version=0.7-SNAPSHOT
scala.version=2.7.7
sbt.version=0.7.1
def.scala.version=2.7.7
build.scala.versions=2.7.7

View file

@ -1,29 +0,0 @@
import sbt._
class AkkaCoreProject(info: ProjectInfo) extends DefaultProject(info) {
val akkautil = "se.scalablesolutions.akka" % "akka-util" % "0.7-SNAPSHOT" % "compile"
val akkautiljava = "se.scalablesolutions.akka" % "akka-util-java" % "0.7-SNAPSHOT" % "compile"
val akka_databinder = "DataBinder" at "http://databinder.net/repo"
val akka_multiverse = "Multiverse" at "http://multiverse.googlecode.com/svn/maven-repository/releases"
val akka_jBoss = "jBoss" at "http://repository.jboss.org/maven2"
val aspec = "org.codehaus.aspectwerkz" % "aspectwerkz-nodeps-jdk5" % "2.1" % "compile"
val apsec_core = "org.codehaus.aspectwerkz" % "aspectwerkz-jdk5" % "2.1" % "compile"
val commonsio = "commons-io" % "commons-io" % "1.4" % "compile"
val netdatabinder = "net.databinder" % "dispatch-json_2.7.7" % "0.6.4" % "compile"
val netdatabinderhttp = "net.databinder" % "dispatch-http_2.7.7" % "0.6.4" % "compile"
val sbinary = "sbinary" % "sbinary" % "0.3" % "compile"
val jack = "org.codehaus.jackson" % "jackson-mapper-asl" % "1.2.1" % "compile"
val jackcore = "org.codehaus.jackson" % "jackson-core-asl" % "1.2.1" % "compile"
val volde = "voldemort.store.compress" % "h2-lzf" % "1.0" % "compile"
val scalajavautil = "org.scala-tools" % "javautils" % "2.7.4-0.1" % "compile"
val netty = "org.jboss.netty" % "netty" % "3.2.0.ALPHA3" % "compile"
val scalatest= "org.scalatest" % "scalatest" % "1.0" % "test"
val junit = "junit" % "junit" % "4.5" % "test"
override def packageDocsJar = defaultJarPath("-javadoc.jar")
override def packageSrcJar= defaultJarPath("-sources.jar")
}

View file

@ -1,43 +0,0 @@
<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-parent</artifactId>
<name>Akka Persistence Modules</name>
<packaging>pom</packaging>
<parent>
<artifactId>akka</artifactId>
<groupId>se.scalablesolutions.akka</groupId>
<version>0.7-SNAPSHOT</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-core</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</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

@ -1,7 +0,0 @@
project.organization=se.scalablesolutions.akka
project.name=akka-util
project.version=0.7-SNAPSHOT
scala.version=2.7.7
sbt.version=0.7.1
def.scala.version=2.7.7
build.scala.versions=2.7.7

View file

@ -1,17 +0,0 @@
import sbt._
class AkkaUtilProject(info: ProjectInfo) extends DefaultProject(info) {
val akka_databinder = "DataBinder" at "http://databinder.net/repo"
val akka_configgy = "Configgy" at "http://www.lag.net/repo"
val akka_multiverse = "Multiverse" at "http://multiverse.googlecode.com/svn/maven-repository/releases"
val akka_jBoss = "jBoss" at "http://repository.jboss.org/maven2"
val aspec = "org.codehaus.aspectwerkz" % "aspectwerkz-nodeps-jdk5" % "2.1" % "compile"
val apsec_core = "org.codehaus.aspectwerkz" % "aspectwerkz-jdk5" % "2.1" % "compile"
val configgy = "net.lag" % "configgy" % "1.4.7" % "compile"
override def packageDocsJar = defaultJarPath("-javadoc.jar")
override def packageSrcJar= defaultJarPath("-sources.jar")
}

View file

@ -1,7 +0,0 @@
import sbt._
class AkkaParent(info: ProjectInfo) extends ParentProject(info) {
lazy val javautil = project("akka-util-java", "akka java util")
lazy val util = project("akka-util", "akka util")
lazy val core = project("akka-core", "akka core", util,javautil)
}