initial take on java examples

This commit is contained in:
momania 2010-09-24 12:13:29 +02:00
parent 489db0074f
commit c6470b0e02
10 changed files with 221 additions and 48 deletions

View file

@ -434,12 +434,12 @@ class AkkaParentProject(info: ProjectInfo) extends DefaultProject(info) {
class AkkaAMQPProject(info: ProjectInfo) extends AkkaDefaultProject(info, distPath) {
val commons_io = Dependencies.commons_io
val rabbit = Dependencies.rabbit
val protobuf = Dependencies.protobuf
val protobuf = Dependencies.protobuf
// testing
val junit = Dependencies.junit
val multiverse = Dependencies.multiverse
val scalatest = Dependencies.scalatest
val junit = Dependencies.junit
val multiverse = Dependencies.multiverse
val scalatest = Dependencies.scalatest
override def testOptions = createTestFilter( _.endsWith("Test") )
}