2010-03-07 08:14:48 +01:00
|
|
|
/*-------------------------------------------------------------------------------
|
|
|
|
|
Copyright (C) 2009-2010 Scalable Solutions AB <http://scalablesolutions.se>
|
|
|
|
|
|
|
|
|
|
----------------------------------------------------
|
|
|
|
|
-------- sbt buildfile for the Akka project --------
|
|
|
|
|
----------------------------------------------------
|
|
|
|
|
|
|
|
|
|
Akka implements a unique hybrid of:
|
|
|
|
|
* Actors , which gives you:
|
2010-03-20 10:54:52 +01:00
|
|
|
* Simple and high-level abstractions for concurrency and parallelism.
|
|
|
|
|
* Asynchronous, non-blocking and highly performant event-driven programming model.
|
|
|
|
|
* Very lightweight event-driven processes (create ~6.5 million actors on 4 G RAM).
|
2010-03-07 08:14:48 +01:00
|
|
|
* Supervision hierarchies with let-it-crash semantics. For writing highly
|
|
|
|
|
fault-tolerant systems that never stop, systems that self-heal.
|
|
|
|
|
* Software Transactional Memory (STM). (Distributed transactions coming soon).
|
|
|
|
|
* Transactors: combine actors and STM into transactional actors. Allows you to
|
|
|
|
|
compose atomic message flows with automatic rollback and retry.
|
|
|
|
|
* Remoting: highly performant distributed actors with remote supervision and
|
|
|
|
|
error management.
|
|
|
|
|
* Cluster membership management.
|
|
|
|
|
|
|
|
|
|
Akka also has a set of add-on modules:
|
2010-03-20 10:54:52 +01:00
|
|
|
* Persistence: A set of pluggable back-end storage modules that works in sync with the STM.
|
|
|
|
|
* Cassandra distributed and highly scalable database.
|
|
|
|
|
* MongoDB document database.
|
|
|
|
|
* Redis data structures database (upcoming)
|
|
|
|
|
* Camel: Expose Actors as Camel endpoints.
|
2010-03-07 08:14:48 +01:00
|
|
|
* REST (JAX-RS): Expose actors as REST services.
|
|
|
|
|
* Comet: Expose actors as Comet services.
|
|
|
|
|
* Security: Digest and Kerberos based security.
|
2010-03-20 10:54:52 +01:00
|
|
|
* Spring: Spring integration
|
|
|
|
|
* Guice: Guice integration
|
2010-03-07 08:14:48 +01:00
|
|
|
* Microkernel: Run Akka as a stand-alone kernel.
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------------------*/
|
|
|
|
|
|
2010-03-02 00:34:14 -05:00
|
|
|
import sbt._
|
2010-03-30 18:56:34 +02:00
|
|
|
import sbt.CompileOrder._
|
|
|
|
|
import scala.Array
|
2010-03-09 22:07:14 +01:00
|
|
|
import java.util.jar.Attributes
|
2010-03-30 18:56:34 +02:00
|
|
|
import java.util.jar.Attributes.Name._
|
|
|
|
|
import java.io.File
|
2010-03-09 22:07:14 +01:00
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
abstract class AkkaDefaults(info: ProjectInfo) extends DefaultProject(info) with AutoCompilerPlugins {
|
2010-03-02 00:34:14 -05:00
|
|
|
|
2010-03-10 17:16:10 +01:00
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
lazy val akkaHome = {
|
|
|
|
|
val home = System.getenv("AKKA_HOME")
|
2010-03-20 10:54:52 +01:00
|
|
|
if (home == null) throw new Error(
|
|
|
|
|
"You need to set the $AKKA_HOME environment variable to the root of the Akka distribution")
|
2010-03-10 17:16:10 +01:00
|
|
|
home
|
|
|
|
|
}
|
2010-03-30 18:56:34 +02:00
|
|
|
val encodingUtf8 = List("-encoding", "UTF-8")
|
|
|
|
|
|
2010-03-10 17:16:10 +01:00
|
|
|
lazy val deployPath = Path.fromFile(new java.io.File(akkaHome + "/deploy"))
|
|
|
|
|
lazy val distPath = Path.fromFile(new java.io.File(akkaHome + "/dist"))
|
|
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
override def javaCompileOptions = JavaCompileOption("-Xlint:unchecked") :: super.javaCompileOptions.toList
|
2010-03-10 17:16:10 +01:00
|
|
|
|
2010-03-25 01:28:55 +01:00
|
|
|
def distName = "%s_%s-%s.zip".format(name, buildScalaVersion, version)
|
2010-03-05 14:33:14 +01:00
|
|
|
|
2010-03-10 17:16:10 +01:00
|
|
|
// ------------------------------------------------------------
|
2010-03-30 18:56:34 +02:00
|
|
|
// publishing
|
|
|
|
|
override def managedStyle = ManagedStyle.Maven
|
|
|
|
|
def publishTo = Resolver.file("maven-local", Path.userHome / ".m2" / "repository" asFile)
|
2010-03-05 14:33:14 +01:00
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
// Credentials(Path.userHome / ".akka_publish_credentials", log)
|
2010-03-02 00:34:14 -05:00
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
override def documentOptions = encodingUtf8.map(SimpleDocOption(_))
|
|
|
|
|
override def packageDocsJar = defaultJarPath("-doc.jar")
|
|
|
|
|
override def packageSrcJar= defaultJarPath("-src.jar")
|
|
|
|
|
override def packageToPublishActions = super.packageToPublishActions ++ Seq(packageDocs, packageSrc)
|
|
|
|
|
|
|
|
|
|
override def pomExtra =
|
|
|
|
|
<inceptionYear>2009</inceptionYear>
|
|
|
|
|
<url>http://akkasource.org</url>
|
|
|
|
|
<organization>
|
|
|
|
|
<name>Scalable Solutions AB</name>
|
|
|
|
|
<url>http://scalablesolutions.se</url>
|
|
|
|
|
</organization>
|
|
|
|
|
<licenses>
|
|
|
|
|
<license>
|
|
|
|
|
<name>Apache 2</name>
|
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
|
</license>
|
|
|
|
|
</licenses>
|
2010-03-09 22:07:14 +01:00
|
|
|
|
2010-03-10 17:16:10 +01:00
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
// create executable jar
|
2010-03-11 09:50:15 +01:00
|
|
|
override def mainClass = Some("se.scalablesolutions.akka.kernel.Main")
|
2010-03-09 22:07:14 +01:00
|
|
|
|
|
|
|
|
override def packageOptions =
|
2010-03-30 18:56:34 +02:00
|
|
|
manifestClassPath.map(cp => ManifestAttributes(
|
|
|
|
|
(Attributes.Name.CLASS_PATH, cp),
|
|
|
|
|
(IMPLEMENTATION_TITLE, "Akka"),
|
|
|
|
|
(IMPLEMENTATION_URL, "http://akkasource.org"),
|
2010-03-30 19:37:48 +02:00
|
|
|
(IMPLEMENTATION_VENDOR, "The Akka Project")
|
|
|
|
|
)).toList :::
|
2010-03-09 22:07:14 +01:00
|
|
|
getMainClass(false).map(MainClass(_)).toList
|
2010-03-10 17:16:10 +01:00
|
|
|
|
|
|
|
|
// create a manifest with all akka jars and dependency jars on classpath
|
2010-03-09 22:07:14 +01:00
|
|
|
override def manifestClassPath = Some(allArtifacts.getFiles
|
|
|
|
|
.filter(_.getName.endsWith(".jar"))
|
2010-03-25 01:28:55 +01:00
|
|
|
.map("lib_managed/scala_%s/compile/".format(buildScalaVersion) + _.getName)
|
2010-03-10 17:16:10 +01:00
|
|
|
.mkString(" ") +
|
2010-03-31 07:33:55 +02:00
|
|
|
" scala-library.jar" +
|
2010-03-25 01:28:55 +01:00
|
|
|
" dist/akka-util_%s-%s.jar".format(buildScalaVersion, version) +
|
|
|
|
|
" dist/akka-util-java_%s-%s.jar".format(buildScalaVersion, version) +
|
|
|
|
|
" dist/akka-core_%s-%s.jar".format(buildScalaVersion, version) +
|
|
|
|
|
" dist/akka-cluster-shoal_%s-%s.jar".format(buildScalaVersion, version) +
|
|
|
|
|
" dist/akka-cluster-jgroups_%s-%s.jar".format(buildScalaVersion, version) +
|
|
|
|
|
" dist/akka-rest_%s-%s.jar".format(buildScalaVersion, version) +
|
|
|
|
|
" dist/akka-comet_%s-%s.jar".format(buildScalaVersion, version) +
|
|
|
|
|
" dist/akka-camel_%s-%s.jar".format(buildScalaVersion, version) +
|
|
|
|
|
" dist/akka-security_%s-%s.jar".format(buildScalaVersion, version) +
|
|
|
|
|
" dist/akka-amqp_%s-%s.jar".format(buildScalaVersion, version) +
|
|
|
|
|
" dist/akka-patterns_%s-%s.jar".format(buildScalaVersion, version) +
|
|
|
|
|
" dist/akka-persistence-common_%s-%s.jar".format(buildScalaVersion, version) +
|
|
|
|
|
" dist/akka-persistence-redis_%s-%s.jar".format(buildScalaVersion, version) +
|
|
|
|
|
" dist/akka-persistence-mongo_%s-%s.jar".format(buildScalaVersion, version) +
|
|
|
|
|
" dist/akka-persistence-cassandra_%s-%s.jar".format(buildScalaVersion, version) +
|
|
|
|
|
" dist/akka-kernel_%s-%s.jar".format(buildScalaVersion, version) +
|
|
|
|
|
" dist/akka-spring_%s-%s.jar".format(buildScalaVersion, version)
|
2010-03-10 17:16:10 +01:00
|
|
|
)
|
2010-03-09 22:07:14 +01:00
|
|
|
|
2010-03-10 17:16:10 +01:00
|
|
|
// ------------------------------------------------------------
|
2010-03-30 18:56:34 +02:00
|
|
|
// helper functions
|
|
|
|
|
def removeDupEntries(paths: PathFinder) =
|
|
|
|
|
Path.lazyPathFinder {
|
|
|
|
|
val mapped = paths.get map { p => (p.relativePath, p) }
|
|
|
|
|
(Map() ++ mapped).values.toList
|
|
|
|
|
}
|
2010-03-10 17:37:47 +01:00
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
def allArtifacts = {
|
2010-03-31 07:33:55 +02:00
|
|
|
Path.fromFile(buildScalaInstance.libraryJar) +++
|
2010-03-30 18:56:34 +02:00
|
|
|
(removeDupEntries(runClasspath filter ClasspathUtilities.isArchive) +++
|
|
|
|
|
((outputPath ##) / defaultJarName) +++
|
|
|
|
|
mainResources +++
|
|
|
|
|
mainDependencies.scalaJars +++
|
|
|
|
|
descendents(info.projectPath, "*.conf") +++
|
|
|
|
|
descendents(info.projectPath / "dist", "*.jar") +++
|
|
|
|
|
descendents(info.projectPath / "deploy", "*.jar") +++
|
|
|
|
|
descendents(path("lib") ##, "*.jar") +++
|
|
|
|
|
descendents(configurationPath(Configurations.Compile) ##, "*.jar"))
|
|
|
|
|
.filter(jar => // remove redundant libs
|
2010-04-01 09:20:51 +02:00
|
|
|
!jar.toString.endsWith("stax-api-1.0.1.jar") ||
|
|
|
|
|
!jar.toString.endsWith("scala-library-2.7.7.jar")
|
|
|
|
|
)
|
2010-03-30 18:56:34 +02:00
|
|
|
}
|
2010-03-10 17:37:47 +01:00
|
|
|
|
2010-03-31 11:04:13 +02:00
|
|
|
def deployTask(info: ProjectInfo, toDir: Path, genJar: Boolean, genDocs: Boolean, genSource: Boolean) = task {
|
2010-03-30 18:56:34 +02:00
|
|
|
val projectPath = info.projectPath.toString
|
|
|
|
|
val moduleName = projectPath.substring(
|
|
|
|
|
projectPath.lastIndexOf(System.getProperty("file.separator")) + 1, projectPath.length)
|
2010-03-17 15:10:22 +01:00
|
|
|
|
2010-03-30 21:35:24 +02:00
|
|
|
// FIXME need to find out a way to grab these paths from the sbt system
|
2010-03-30 18:56:34 +02:00
|
|
|
|
|
|
|
|
// binary
|
2010-03-31 11:04:13 +02:00
|
|
|
if (genJar) {
|
|
|
|
|
val JAR_FILE_NAME = moduleName + "_%s-%s.jar".format(buildScalaVersion, version)
|
|
|
|
|
val JAR_FILE_PATH = projectPath + "/target/scala_%s/".format(buildScalaVersion) + JAR_FILE_NAME
|
|
|
|
|
val fromJar = Path.fromFile(new java.io.File(JAR_FILE_PATH))
|
|
|
|
|
val toJar = Path.fromFile(new java.io.File(toDir + "/" + JAR_FILE_NAME))
|
|
|
|
|
log.info("Deploying bits " + toJar)
|
|
|
|
|
FileUtilities.copyFile(fromJar, toJar, log)
|
|
|
|
|
}
|
2010-03-30 18:56:34 +02:00
|
|
|
|
|
|
|
|
// docs
|
2010-03-31 11:04:13 +02:00
|
|
|
if (genDocs) {
|
|
|
|
|
val DOC_FILE_NAME = moduleName + "_%s-%s-%s.jar".format(buildScalaVersion, version, "doc")
|
|
|
|
|
val DOC_FILE_PATH = projectPath + "/target/scala_%s/".format(buildScalaVersion) + DOC_FILE_NAME
|
|
|
|
|
val fromDoc = Path.fromFile(new java.io.File(DOC_FILE_PATH))
|
|
|
|
|
val toDoc = Path.fromFile(new java.io.File(toDir + "/" + DOC_FILE_NAME))
|
|
|
|
|
log.info("Deploying docs " + toDoc)
|
|
|
|
|
FileUtilities.copyFile(fromDoc, toDoc, log)
|
|
|
|
|
}
|
2010-03-30 18:56:34 +02:00
|
|
|
|
|
|
|
|
// sources
|
2010-03-31 11:04:13 +02:00
|
|
|
if (genSource) {
|
|
|
|
|
val SRC_FILE_NAME = moduleName + "_%s-%s-%s.jar".format(buildScalaVersion, version, "src")
|
|
|
|
|
val SRC_FILE_PATH = projectPath + "/target/scala_%s/".format(buildScalaVersion) + SRC_FILE_NAME
|
|
|
|
|
val fromSrc = Path.fromFile(new java.io.File(SRC_FILE_PATH))
|
|
|
|
|
val toSrc = Path.fromFile(new java.io.File(toDir + "/" + SRC_FILE_NAME))
|
|
|
|
|
log.info("Deploying sources " + toSrc)
|
|
|
|
|
FileUtilities.copyFile(fromSrc, toSrc, log)
|
|
|
|
|
}
|
|
|
|
|
None
|
2010-03-30 18:56:34 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class AkkaParent(info: ProjectInfo) extends AkkaDefaults(info) {
|
|
|
|
|
|
|
|
|
|
// These lines need to be here instead of in AkkaDefaults to be able to resolve project.name in build.properties
|
|
|
|
|
val sourceArtifact = Artifact(artifactID, "src", "jar", Some("src"), Nil, None)
|
|
|
|
|
val docsArtifact = Artifact(artifactID, "docs", "jar", Some("doc"), Nil, None)
|
|
|
|
|
|
2010-03-10 17:16:10 +01:00
|
|
|
lazy val dist = zipTask(allArtifacts, "dist", distName) dependsOn (`package`) describedAs("Zips up the distribution.")
|
|
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
// project versions
|
|
|
|
|
val JERSEY_VERSION = "1.1.5"
|
|
|
|
|
val ATMO_VERSION = "0.5.4"
|
|
|
|
|
val CASSANDRA_VERSION = "0.5.0"
|
|
|
|
|
val LIFT_VERSION = "2.0-scala280-SNAPSHOT"
|
|
|
|
|
val SCALATEST_VERSION = "1.0.1-for-scala-2.8.0.Beta1-with-test-interfaces-0.3-SNAPSHOT"
|
2010-03-10 17:16:10 +01:00
|
|
|
|
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
// repositories
|
2010-03-18 21:20:48 +01:00
|
|
|
val embeddedrepo = "embedded repo" at new File(akkaHome, "embedded-repo").toURI.toString
|
2010-03-05 14:33:14 +01:00
|
|
|
val sunjdmk = "sunjdmk" at "http://wp5.e-taxonomy.eu/cdmlib/mavenrepo"
|
|
|
|
|
val databinder = "DataBinder" at "http://databinder.net/repo"
|
2010-03-31 00:26:38 +02:00
|
|
|
// val configgy = "Configgy" at "http://www.lag.net/repo"
|
2010-03-07 08:14:48 +01:00
|
|
|
val codehaus = "Codehaus" at "http://repository.codehaus.org"
|
|
|
|
|
val codehaus_snapshots = "Codehaus Snapshots" at "http://snapshots.repository.codehaus.org"
|
2010-03-05 14:33:14 +01:00
|
|
|
val jboss = "jBoss" at "http://repository.jboss.org/maven2"
|
|
|
|
|
val guiceyfruit = "GuiceyFruit" at "http://guiceyfruit.googlecode.com/svn/repo/releases/"
|
|
|
|
|
val google = "google" at "http://google-maven-repository.googlecode.com/svn/repository"
|
|
|
|
|
val m2 = "m2" at "http://download.java.net/maven/2"
|
2010-03-31 00:26:38 +02:00
|
|
|
val scala_tools_snapshots = "scala-tools snapshots" at "http://scala-tools.org/repo-snapshots"
|
2010-03-05 14:33:14 +01:00
|
|
|
|
2010-03-10 17:16:10 +01:00
|
|
|
// ------------------------------------------------------------
|
2010-03-05 14:33:14 +01:00
|
|
|
// project defintions
|
2010-03-09 22:07:14 +01:00
|
|
|
lazy val akka_java_util = project("akka-util-java", "akka-util-java", new AkkaJavaUtilProject(_))
|
2010-03-05 14:33:14 +01:00
|
|
|
lazy val akka_util = project("akka-util", "akka-util", new AkkaUtilProject(_))
|
|
|
|
|
lazy val akka_core = project("akka-core", "akka-core", new AkkaCoreProject(_), akka_util, akka_java_util)
|
|
|
|
|
lazy val akka_amqp = project("akka-amqp", "akka-amqp", new AkkaAMQPProject(_), akka_core)
|
|
|
|
|
lazy val akka_rest = project("akka-rest", "akka-rest", new AkkaRestProject(_), akka_core)
|
|
|
|
|
lazy val akka_comet = project("akka-comet", "akka-comet", new AkkaCometProject(_), akka_rest)
|
2010-03-16 06:45:04 +01:00
|
|
|
lazy val akka_camel = project("akka-camel", "akka-camel", new AkkaCamelProject(_), akka_core)
|
2010-03-05 14:33:14 +01:00
|
|
|
lazy val akka_patterns = project("akka-patterns", "akka-patterns", new AkkaPatternsProject(_), akka_core)
|
|
|
|
|
lazy val akka_security = project("akka-security", "akka-security", new AkkaSecurityProject(_), akka_core)
|
|
|
|
|
lazy val akka_persistence = project("akka-persistence", "akka-persistence", new AkkaPersistenceParentProject(_))
|
|
|
|
|
lazy val akka_cluster = project("akka-cluster", "akka-cluster", new AkkaClusterParentProject(_))
|
2010-03-20 10:43:23 +01:00
|
|
|
lazy val akka_spring = project("akka-spring", "akka-spring", new AkkaSpringProject(_), akka_core)
|
2010-03-10 17:16:10 +01:00
|
|
|
lazy val akka_kernel = project("akka-kernel", "akka-kernel", new AkkaKernelProject(_),
|
2010-03-20 10:54:52 +01:00
|
|
|
akka_core, akka_rest, akka_spring, akka_camel, akka_persistence,
|
|
|
|
|
akka_cluster, akka_amqp, akka_security, akka_comet, akka_patterns)
|
2010-03-05 14:33:14 +01:00
|
|
|
|
2010-03-10 17:16:10 +01:00
|
|
|
// functional tests in java
|
2010-03-05 14:33:14 +01:00
|
|
|
lazy val akka_fun_test = project("akka-fun-test-java", "akka-fun-test-java", new AkkaFunTestProject(_), akka_kernel)
|
2010-03-02 00:34:14 -05:00
|
|
|
|
2010-03-10 17:16:10 +01:00
|
|
|
// examples
|
|
|
|
|
lazy val akka_samples = project("akka-samples", "akka-samples", new AkkaSamplesParentProject(_))
|
2010-03-30 18:56:34 +02:00
|
|
|
|
2010-03-17 15:10:22 +01:00
|
|
|
// ------------------------------------------------------------
|
2010-03-02 00:34:14 -05:00
|
|
|
// subprojects
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaCoreProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-09 22:07:14 +01:00
|
|
|
val netty = "org.jboss.netty" % "netty" % "3.2.0.BETA1" % "compile"
|
2010-03-05 09:17:15 +01:00
|
|
|
val commons_io = "commons-io" % "commons-io" % "1.4" % "compile"
|
2010-03-25 01:28:55 +01:00
|
|
|
val dispatch_json = "net.databinder" % "dispatch-json_2.8.0.Beta1" % "0.6.6" % "compile"
|
|
|
|
|
val dispatch_htdisttp = "net.databinder" % "dispatch-http_2.8.0.Beta1" % "0.6.6" % "compile"
|
|
|
|
|
val sjson = "sjson.json" % "sjson" % "0.5-SNAPSHOT-2.8.Beta1" % "compile"
|
2010-03-25 21:50:27 +01:00
|
|
|
val sbinary = "sbinary" % "sbinary" % "2.8.0.Beta1-2.8.0.Beta1-0.3.1-SNAPSHOT" % "compile"
|
2010-03-05 09:17:15 +01:00
|
|
|
val jackson = "org.codehaus.jackson" % "jackson-mapper-asl" % "1.2.1" % "compile"
|
|
|
|
|
val jackson_core = "org.codehaus.jackson" % "jackson-core-asl" % "1.2.1" % "compile"
|
|
|
|
|
val voldemort = "voldemort.store.compress" % "h2-lzf" % "1.0" % "compile"
|
2010-03-31 14:36:42 +02:00
|
|
|
val jsr166x = "jsr166x" % "jsr166x" % "1.0" % "compile"
|
2010-03-05 09:17:15 +01:00
|
|
|
// testing
|
2010-03-23 00:29:18 +01:00
|
|
|
val scalatest = "org.scalatest" % "scalatest" % SCALATEST_VERSION % "test"
|
2010-03-02 00:34:14 -05:00
|
|
|
val junit = "junit" % "junit" % "4.5" % "test"
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, distPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-02 00:34:14 -05:00
|
|
|
}
|
|
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaUtilProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-05 09:17:15 +01:00
|
|
|
val werkz = "org.codehaus.aspectwerkz" % "aspectwerkz-nodeps-jdk5" % "2.1" % "compile"
|
|
|
|
|
val werkz_core = "org.codehaus.aspectwerkz" % "aspectwerkz-jdk5" % "2.1" % "compile"
|
2010-03-23 00:29:18 +01:00
|
|
|
val configgy = "net.lag" % "configgy" % "2.8.0.Beta1-1.5-SNAPSHOT" % "compile"
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, distPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-02 00:34:14 -05:00
|
|
|
}
|
|
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaJavaUtilProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-02 00:34:14 -05:00
|
|
|
val guicey = "org.guiceyfruit" % "guice-core" % "2.0-beta-4" % "compile"
|
2010-03-05 09:17:15 +01:00
|
|
|
val protobuf = "com.google.protobuf" % "protobuf-java" % "2.2.0" % "compile"
|
2010-03-21 21:50:18 +01:00
|
|
|
val multiverse = "org.multiverse" % "multiverse-alpha" % "0.4" % "compile"
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, distPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-02 00:34:14 -05:00
|
|
|
}
|
|
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaAMQPProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-22 07:42:15 +01:00
|
|
|
val commons_io = "commons-io" % "commons-io" % "1.4" % "compile"
|
2010-03-31 07:33:55 +02:00
|
|
|
val rabbit = "com.rabbitmq" % "amqp-client" % "1.7.2" % "compile"
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, distPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-02 00:34:14 -05:00
|
|
|
}
|
|
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaRestProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-22 07:42:15 +01:00
|
|
|
val jackson_core_asl = "org.codehaus.jackson" % "jackson-core-asl" % "1.2.1" % "compile"
|
|
|
|
|
val stax_api = "javax.xml.stream" % "stax-api" % "1.0-2" % "compile"
|
2010-03-09 22:07:14 +01:00
|
|
|
val servlet = "javax.servlet" % "servlet-api" % "2.5" % "compile"
|
2010-03-05 09:17:15 +01:00
|
|
|
val jersey = "com.sun.jersey" % "jersey-core" % JERSEY_VERSION % "compile"
|
|
|
|
|
val jersey_server = "com.sun.jersey" % "jersey-server" % JERSEY_VERSION % "compile"
|
|
|
|
|
val jersey_json = "com.sun.jersey" % "jersey-json" % JERSEY_VERSION % "compile"
|
|
|
|
|
val jersey_contrib = "com.sun.jersey.contribs" % "jersey-scala" % JERSEY_VERSION % "compile"
|
|
|
|
|
val jsr311 = "javax.ws.rs" % "jsr311-api" % "1.1" % "compile"
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, distPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-02 00:34:14 -05:00
|
|
|
}
|
|
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaCometProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-02 00:34:14 -05:00
|
|
|
val grizzly = "com.sun.grizzly" % "grizzly-comet-webserver" % "1.9.18-i" % "compile"
|
2010-03-09 22:07:14 +01:00
|
|
|
val servlet = "javax.servlet" % "servlet-api" % "2.5" % "compile"
|
2010-03-05 09:17:15 +01:00
|
|
|
val atmo = "org.atmosphere" % "atmosphere-annotations" % ATMO_VERSION % "compile"
|
|
|
|
|
val atmo_jersey = "org.atmosphere" % "atmosphere-jersey" % ATMO_VERSION % "compile"
|
|
|
|
|
val atmo_runtime = "org.atmosphere" % "atmosphere-runtime" % ATMO_VERSION % "compile"
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, distPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-02 00:34:14 -05:00
|
|
|
}
|
|
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaCamelProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-16 06:45:04 +01:00
|
|
|
val camel_core = "org.apache.camel" % "camel-core" % "2.2.0" % "compile"
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, distPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-16 06:45:04 +01:00
|
|
|
}
|
|
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaPatternsProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-05 09:17:15 +01:00
|
|
|
// testing
|
2010-03-23 00:29:18 +01:00
|
|
|
val scalatest = "org.scalatest" % "scalatest" % SCALATEST_VERSION % "test"
|
2010-03-02 00:34:14 -05:00
|
|
|
val junit = "junit" % "junit" % "4.5" % "test"
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, distPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-02 00:34:14 -05:00
|
|
|
}
|
|
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaSecurityProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-22 07:42:15 +01:00
|
|
|
val commons_logging = "commons-logging" % "commons-logging" % "1.1.1" % "compile"
|
2010-03-31 07:33:55 +02:00
|
|
|
val annotation = "javax.annotation" % "jsr250-api" % "1.0" % "compile"
|
2010-03-05 09:17:15 +01:00
|
|
|
val jersey_server = "com.sun.jersey" % "jersey-server" % JERSEY_VERSION % "compile"
|
|
|
|
|
val jsr311 = "javax.ws.rs" % "jsr311-api" % "1.1" % "compile"
|
2010-03-25 01:28:55 +01:00
|
|
|
val lift_common = "net.liftweb" % "lift-common" % LIFT_VERSION % "compile"
|
2010-03-23 00:29:18 +01:00
|
|
|
val lift_util = "net.liftweb" % "lift-util" % LIFT_VERSION % "compile"
|
2010-03-05 09:17:15 +01:00
|
|
|
// testing
|
2010-03-23 00:29:18 +01:00
|
|
|
val scalatest = "org.scalatest" % "scalatest" % SCALATEST_VERSION % "test"
|
2010-03-02 00:34:14 -05:00
|
|
|
val junit = "junit" % "junit" % "4.5" % "test"
|
|
|
|
|
val mockito = "org.mockito" % "mockito-all" % "1.8.1" % "test"
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, distPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-02 00:34:14 -05:00
|
|
|
}
|
|
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaPersistenceCommonProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-05 14:33:14 +01:00
|
|
|
val thrift = "com.facebook" % "thrift" % "1.0" % "compile"
|
2010-03-29 10:15:10 +02:00
|
|
|
val commons_pool = "commons-pool" % "commons-pool" % "1.5.4" % "compile"
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, distPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-02 00:34:14 -05:00
|
|
|
}
|
2010-03-05 14:33:14 +01:00
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaRedisProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-31 01:32:01 +05:30
|
|
|
val redis = "com.redis" % "redisclient" % "2.8.0.Beta1-1.2" % "compile"
|
2010-03-05 14:33:14 +01:00
|
|
|
override def testOptions = TestFilter((name: String) => name.endsWith("Test")) :: Nil
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, distPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-02 00:34:14 -05:00
|
|
|
}
|
|
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaMongoProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-02 00:34:14 -05:00
|
|
|
val mongo = "org.mongodb" % "mongo-java-driver" % "1.1" % "compile"
|
2010-03-05 14:33:14 +01:00
|
|
|
override def testOptions = TestFilter((name: String) => name.endsWith("Test")) :: Nil
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, distPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-02 00:34:14 -05:00
|
|
|
}
|
|
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaCassandraProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-05 09:17:15 +01:00
|
|
|
val cassandra = "org.apache.cassandra" % "cassandra" % CASSANDRA_VERSION % "compile"
|
|
|
|
|
val high_scale = "org.apache.cassandra" % "high-scale-lib" % CASSANDRA_VERSION % "test"
|
|
|
|
|
val cassandra_clhm = "org.apache.cassandra" % "clhm-production" % CASSANDRA_VERSION % "test"
|
|
|
|
|
val commons_coll = "commons-collections" % "commons-collections" % "3.2.1" % "test"
|
|
|
|
|
val google_coll = "com.google.collections" % "google-collections" % "1.0" % "test"
|
2010-03-02 00:34:14 -05:00
|
|
|
val slf4j = "org.slf4j" % "slf4j-api" % "1.5.8" % "test"
|
2010-03-05 09:17:15 +01:00
|
|
|
val slf4j_log4j = "org.slf4j" % "slf4j-log4j12" % "1.5.8" % "test"
|
2010-03-05 14:33:14 +01:00
|
|
|
val log4j = "log4j" % "log4j" % "1.2.15" % "test"
|
|
|
|
|
override def testOptions = TestFilter((name: String) => name.endsWith("Test")) :: Nil
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, distPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-02 00:34:14 -05:00
|
|
|
}
|
|
|
|
|
|
2010-03-05 14:33:14 +01:00
|
|
|
class AkkaPersistenceParentProject(info: ProjectInfo) extends ParentProject(info) {
|
2010-03-20 10:54:52 +01:00
|
|
|
lazy val akka_persistence_common = project("akka-persistence-common", "akka-persistence-common",
|
|
|
|
|
new AkkaPersistenceCommonProject(_), akka_core)
|
|
|
|
|
lazy val akka_persistence_redis = project("akka-persistence-redis", "akka-persistence-redis",
|
|
|
|
|
new AkkaRedisProject(_), akka_persistence_common)
|
|
|
|
|
lazy val akka_persistence_mongo = project("akka-persistence-mongo", "akka-persistence-mongo",
|
|
|
|
|
new AkkaMongoProject(_), akka_persistence_common)
|
|
|
|
|
lazy val akka_persistence_cassandra = project("akka-persistence-cassandra", "akka-persistence-cassandra",
|
|
|
|
|
new AkkaCassandraProject(_), akka_persistence_common)
|
2010-03-02 00:34:14 -05:00
|
|
|
}
|
2010-03-05 14:33:14 +01:00
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaJgroupsProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-02 23:44:16 -05:00
|
|
|
val jgroups = "jgroups" % "jgroups" % "2.8.0.CR7" % "compile"
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, distPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-02 23:44:16 -05:00
|
|
|
}
|
2010-03-05 14:33:14 +01:00
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaShoalProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-02 23:44:16 -05:00
|
|
|
val shoal = "shoal-jxta" % "shoal" % "1.1-20090818" % "compile"
|
2010-03-05 09:17:15 +01:00
|
|
|
val shoal_extra = "shoal-jxta" % "jxta" % "1.1-20090818" % "compile"
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, distPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-02 23:44:16 -05:00
|
|
|
}
|
2010-03-05 14:33:14 +01:00
|
|
|
|
|
|
|
|
class AkkaClusterParentProject(info: ProjectInfo) extends ParentProject(info) {
|
2010-03-20 10:54:52 +01:00
|
|
|
lazy val akka_cluster_jgroups = project("akka-cluster-jgroups", "akka-cluster-jgroups",
|
|
|
|
|
new AkkaJgroupsProject(_), akka_core)
|
|
|
|
|
lazy val akka_cluster_shoal = project("akka-cluster-shoal", "akka-cluster-shoal",
|
|
|
|
|
new AkkaShoalProject(_), akka_core)
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaKernelProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, distPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-02 23:44:16 -05:00
|
|
|
}
|
2010-03-05 14:33:14 +01:00
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaSpringProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-31 07:33:55 +02:00
|
|
|
val spring_beans = "org.springframework" % "spring-beans" % "3.0.1.RELEASE" % "compile"
|
|
|
|
|
val spring_context = "org.springframework" % "spring-context" % "3.0.1.RELEASE" % "compile"
|
|
|
|
|
|
2010-03-17 10:06:28 +01:00
|
|
|
// testing
|
2010-03-23 00:29:18 +01:00
|
|
|
val scalatest = "org.scalatest" % "scalatest" % SCALATEST_VERSION % "test"
|
2010-03-17 10:06:28 +01:00
|
|
|
val junit = "junit" % "junit" % "4.5" % "test"
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, distPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-17 10:06:28 +01:00
|
|
|
}
|
|
|
|
|
|
2010-03-05 09:17:15 +01:00
|
|
|
// examples
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaFunTestProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-22 07:42:15 +01:00
|
|
|
val jackson_core_asl = "org.codehaus.jackson" % "jackson-core-asl" % "1.2.1" % "compile"
|
|
|
|
|
val stax_api = "javax.xml.stream" % "stax-api" % "1.0-2" % "compile"
|
2010-03-31 07:33:55 +02:00
|
|
|
val protobuf = "com.google.protobuf" % "protobuf-java" % "2.2.0" % "compile"
|
2010-03-02 23:44:16 -05:00
|
|
|
val grizzly = "com.sun.grizzly" % "grizzly-comet-webserver" % "1.9.18-i" % "compile"
|
2010-03-05 09:17:15 +01:00
|
|
|
val jersey_server = "com.sun.jersey" % "jersey-server" % JERSEY_VERSION % "compile"
|
|
|
|
|
val jersey_json = "com.sun.jersey" % "jersey-json" % JERSEY_VERSION % "compile"
|
|
|
|
|
val jersey_atom = "com.sun.jersey" % "jersey-atom" % JERSEY_VERSION % "compile"
|
|
|
|
|
// testing
|
2010-03-02 23:44:16 -05:00
|
|
|
val junit = "junit" % "junit" % "4.5" % "test"
|
|
|
|
|
val jmock = "org.jmock" % "jmock" % "2.4.0" % "test"
|
|
|
|
|
}
|
2010-03-05 14:33:14 +01:00
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaSampleChatProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, deployPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-09 22:07:14 +01:00
|
|
|
}
|
2010-03-05 14:33:14 +01:00
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaSampleLiftProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-22 07:42:15 +01:00
|
|
|
val commons_logging = "commons-logging" % "commons-logging" % "1.1.1" % "compile"
|
2010-03-23 00:29:18 +01:00
|
|
|
val lift = "net.liftweb" % "lift-webkit" % LIFT_VERSION % "compile"
|
|
|
|
|
val lift_util = "net.liftweb" % "lift-util" % LIFT_VERSION % "compile"
|
2010-03-09 22:07:14 +01:00
|
|
|
val servlet = "javax.servlet" % "servlet-api" % "2.5" % "compile"
|
2010-03-05 09:17:15 +01:00
|
|
|
// testing
|
2010-03-19 08:14:00 +01:00
|
|
|
val jetty = "org.mortbay.jetty" % "jetty" % "6.1.22" % "test"
|
2010-03-02 23:44:16 -05:00
|
|
|
val junit = "junit" % "junit" % "4.5" % "test"
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, deployPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-02 23:44:16 -05:00
|
|
|
}
|
2010-03-05 14:33:14 +01:00
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaSampleRestJavaProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, deployPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-09 22:07:14 +01:00
|
|
|
}
|
2010-03-05 14:33:14 +01:00
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaSampleRestScalaProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-22 07:42:15 +01:00
|
|
|
val jsr311 = "javax.ws.rs" % "jsr311-api" % "1.1.1" % "compile"
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, deployPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-02 23:44:16 -05:00
|
|
|
}
|
2010-03-05 14:33:14 +01:00
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaSampleCamelProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-22 07:42:15 +01:00
|
|
|
val commons_codec = "commons-codec" % "commons-codec" % "1.3" % "compile"
|
2010-03-31 07:33:55 +02:00
|
|
|
val spring_jms = "org.springframework" % "spring-jms" % "3.0.1.RELEASE" % "compile"
|
2010-03-19 08:14:00 +01:00
|
|
|
val camel_jetty = "org.apache.camel" % "camel-jetty" % "2.2.0" % "compile"
|
2010-03-16 06:45:04 +01:00
|
|
|
val camel_jms = "org.apache.camel" % "camel-jms" % "2.2.0" % "compile"
|
|
|
|
|
val activemq_core = "org.apache.activemq" % "activemq-core" % "5.3.0" % "compile"
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, deployPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-16 06:45:04 +01:00
|
|
|
}
|
|
|
|
|
|
2010-03-30 18:56:34 +02:00
|
|
|
class AkkaSampleSecurityProject(info: ProjectInfo) extends AkkaDefaults(info) {
|
2010-03-22 07:42:15 +01:00
|
|
|
val jsr311 = "javax.ws.rs" % "jsr311-api" % "1.1.1" % "compile"
|
2010-03-31 07:33:55 +02:00
|
|
|
val jsr250 = "javax.annotation" % "jsr250-api" % "1.0" % "compile"
|
2010-03-30 21:20:01 +02:00
|
|
|
val commons_codec = "commons-codec" % "commons-codec" % "1.3" % "compile"
|
2010-03-31 11:04:13 +02:00
|
|
|
lazy val dist = deployTask(info, deployPath, true, true, true) dependsOn(`package`, packageDocs, packageSrc) describedAs("Deploying")
|
2010-03-02 23:44:16 -05:00
|
|
|
}
|
|
|
|
|
|
2010-03-05 14:33:14 +01:00
|
|
|
class AkkaSamplesParentProject(info: ProjectInfo) extends ParentProject(info) {
|
2010-03-20 10:54:52 +01:00
|
|
|
lazy val akka_sample_chat = project("akka-sample-chat", "akka-sample-chat",
|
|
|
|
|
new AkkaSampleChatProject(_), akka_kernel)
|
|
|
|
|
lazy val akka_sample_lift = project("akka-sample-lift", "akka-sample-lift",
|
|
|
|
|
new AkkaSampleLiftProject(_), akka_kernel)
|
|
|
|
|
lazy val akka_sample_rest_java = project("akka-sample-rest-java", "akka-sample-rest-java",
|
|
|
|
|
new AkkaSampleRestJavaProject(_), akka_kernel)
|
|
|
|
|
lazy val akka_sample_rest_scala = project("akka-sample-rest-scala", "akka-sample-rest-scala",
|
|
|
|
|
new AkkaSampleRestScalaProject(_), akka_kernel)
|
|
|
|
|
lazy val akka_sample_camel = project("akka-sample-camel", "akka-sample-camel",
|
|
|
|
|
new AkkaSampleCamelProject(_), akka_kernel)
|
|
|
|
|
lazy val akka_sample_security = project("akka-sample-security", "akka-sample-security",
|
2010-03-25 21:50:27 +01:00
|
|
|
new AkkaSampleSecurityProject(_), akka_kernel)
|
2010-03-10 17:16:10 +01:00
|
|
|
}
|
2010-03-02 00:34:14 -05:00
|
|
|
}
|