Trying to fix sbt build...
authorChristos KK Loverdos <loverdos@gmail.com>
Thu, 22 Dec 2011 09:10:42 +0000 (11:10 +0200)
committerChristos KK Loverdos <loverdos@gmail.com>
Thu, 22 Dec 2011 09:10:42 +0000 (11:10 +0200)
project/build/Aquarium.scala

index 56da98f..c461989 100644 (file)
@@ -68,45 +68,46 @@ class Aquarium(info: ProjectInfo) extends DefaultProject(info) {
   override def parallelExecution = false
 
   val repo0 = "aquarium nexus" at "http://aquarium.dev.grnet.gr:8081/nexus/content/groups/public"
-       val repo1 = "java.net.maven2" at "http://download.java.net/maven/2/"
-       val repo2 = "EclipseLink Repo" at "http://download.eclipse.org/rt/eclipselink/maven.repo"
-       val repo3 = "jboss" at "http://repository.jboss.org/nexus/content/groups/public/"
-       val repo4 = "sonatype" at "http://oss.sonatype.org/content/groups/public/"
-       val repo5 = "jcrontab" at "http://kenai.com/projects/crontab-parser/sources/maven-repo/content/"
-       val repo6 = "typsafe" at "http://repo.typesafe.com/typesafe/releases/"
-       val repo7 = "akka" at "http://akka.io/repository/"
-       val repo8 = "twitter" at "http://maven.twttr.com"
-       val repo9 = "tools-snapshots" at "http://scala-tools.org/repo-snapshots"
-       val repoA = "sonatype-snapshots" at "http://oss.sonatype.org/content/repositories/snapshots"
-
-       val lib_slf4j     = "org.slf4j"      % "slf4j-api"            % "1.6.1"   withSources()
-       val lib_h2        = "com.h2database" % "h2"                   % "1.3.160" withSources()
-       val lib_mysql     = "mysql"          % "mysql-connector-java" % "5.1.17"  
-       val lib_scalajpa  = "org.scala-libs" % "scalajpa_2.9.1"       % "1.4"     withSources()
-       val lib_elink     = "org.eclipse.persistence"  % "eclipselink" % "2.2.0"   withSources()
-
-       val lib_liftjson  = "net.liftweb"    % "lift-json_2.9.1" % "2.4-M5"         withSources()
-       val lib_liftjsonX = "net.liftweb"    % "lift-json-ext_2.9.1" % "2.4-M5"         withSources()
-       val lib_yaml      = "org.yaml"       % "snakeyaml"       % "1.9"  withSources()
-       val lib_jcrontab  = "com.kenai.crontab-parser" % "crontab-parser" % "1.0.1" withSources()
-       val lib_xstream   = "com.thoughtworks.xstream" % "xstream"     % "1.4.1" withSources()
-       val lib_rabbit    = "com.rabbitmq"   % "amqp-client"       % "2.5.0" withSources()
-       val lib_mongo     = "org.mongodb"    % "mongo-java-driver" % "2.7.2" withSources()
-       //val lib_casbah    = "com.mongodb.casbah" % "casbah-core_2.9.1"  % "2.1.5-1" withSources()
-       val lib_akka_actor  = "se.scalablesolutions.akka" % "akka-actor"   % "1.3-RC4" withSources()
-       val lib_akka_remote = "se.scalablesolutions.akka" % "akka-remote"  % "1.3-RC4" withSources()
-       val lib_akka_test   = "se.scalablesolutions.akka" % "akka-testkit" % "1.3-RC4" % "test" withSources()
-       val lib_akka_amqp   = "se.scalablesolutions.akka" % "akka-amqp"    % "1.3-RC4" withSources()
-
-       val lib_javaxrs     = "javax.ws.rs" % "jsr311-api" % "1.1.1" withSources()
-       val lib_spray_can   = "cc.spray.can" % "spray-can" % "0.9.2-SNAPSHOT" withSources()
-       // val lib_spray_server= "cc.spray.can" % "spray-server" % "0.9.0-SNAPSHOT" withSources()
-
-       val lib_converter      = "com.ckkloverdos" % "converter_2.9.1"      % "0.3.0" withSources()
-       val lib_streamresource = "com.ckkloverdos" % "streamresource_2.9.1" % "0.2.0" withSources()
-
-       val lib_lucene_core = "org.apache.lucene" % "lucene-core" % "3.5.0" withSources()
-       val lib_solr_core   = "org.apache.solr"   % "solr-core"   % "3.5.0" withSources()
-
-       val lib_test = "com.novocode" % "junit-interface" % "0.7" % "test->default"
+  val repo1 = "java.net.maven2" at "http://download.java.net/maven/2/"
+  val repo2 = "EclipseLink Repo" at "http://download.eclipse.org/rt/eclipselink/maven.repo"
+  val repo3 = "jboss" at "http://repository.jboss.org/nexus/content/groups/public/"
+  val repo4 = "sonatype" at "http://oss.sonatype.org/content/groups/public/"
+  val repo5 = "jcrontab" at "http://kenai.com/projects/crontab-parser/sources/maven-repo/content/"
+  val repo6 = "typsafe" at "http://repo.typesafe.com/typesafe/releases/"
+  val repo7 = "akka" at "http://akka.io/repository/"
+  val repo8 = "twitter" at "http://maven.twttr.com"
+  val repo9 = "tools-snapshots" at "http://scala-tools.org/repo-snapshots"
+  val repoA = "tools-releases" at "http://scala-tools.org/repo-releases"
+  val repoB = "sonatype-snapshots" at "http://oss.sonatype.org/content/repositories/snapshots"
+
+  val lib_slf4j = "org.slf4j" % "slf4j-api" % "1.6.1" withSources()
+  val lib_h2 = "com.h2database" % "h2" % "1.3.160" withSources()
+  val lib_mysql = "mysql" % "mysql-connector-java" % "5.1.17"
+  val lib_scalajpa = "org.scala-libs" % "scalajpa_2.9.1" % "1.4" withSources()
+  val lib_elink = "org.eclipse.persistence" % "eclipselink" % "2.2.0" withSources()
+
+  val lib_liftjson = "net.liftweb" % "lift-json_2.9.1" % "2.4-M5" withSources()
+  val lib_liftjsonX = "net.liftweb" % "lift-json-ext_2.9.1" % "2.4-M5" withSources()
+  val lib_yaml = "org.yaml" % "snakeyaml" % "1.9" withSources()
+  val lib_jcrontab = "com.kenai.crontab-parser" % "crontab-parser" % "1.0.1" withSources()
+  val lib_xstream = "com.thoughtworks.xstream" % "xstream" % "1.4.1" withSources()
+  val lib_rabbit = "com.rabbitmq" % "amqp-client" % "2.5.0" withSources()
+  val lib_mongo = "org.mongodb" % "mongo-java-driver" % "2.7.2" withSources()
+  val lib_akka_actor = "se.scalablesolutions.akka" % "akka-actor" % "1.3-RC4" withSources()
+  val lib_akka_remote = "se.scalablesolutions.akka" % "akka-remote" % "1.3-RC4" withSources()
+  val lib_akka_test = "se.scalablesolutions.akka" % "akka-testkit" % "1.3-RC4" % "test" withSources()
+  val lib_akka_amqp = "se.scalablesolutions.akka" % "akka-amqp" % "1.3-RC4" withSources()
+
+  val lib_javaxrs = "javax.ws.rs" % "jsr311-api" % "1.1.1" withSources()
+  val lib_spray_can = "cc.spray.can" % "spray-can" % "0.9.2-SNAPSHOT" withSources()
+
+  val lib_converter = "com.ckkloverdos" % "converter_2.9.1" % "0.3.0" withSources()
+  val lib_streamresource = "com.ckkloverdos" % "streamresource_2.9.1" % "0.2.0" withSources()
+
+  val lib_lucene_core = "org.apache.lucene" % "lucene-core" % "3.5.0" withSources()
+  val lib_solr_core = "org.apache.solr" % "solr-core" % "3.5.0" withSources()
+
+  val lib_scopt = "com.github.scopt" %% "scopt" % "1.1.2" withSources()
+
+  val lib_test = "com.novocode" % "junit-interface" % "0.7" % "test->default"
 }
\ No newline at end of file