Browse Source

Update from 0.9 snapshot to 0.9 release of ...

... reactivemongo plugin.
Skamander 12 years ago
parent
commit
67dee27869
2 changed files with 16 additions and 17 deletions
  1. 14 14
      play-scala-mongodb/conf/application.conf
  2. 2 3
      play-scala-mongodb/project/Build.scala

+ 14 - 14
play-scala-mongodb/conf/application.conf

@@ -52,17 +52,17 @@ logger.play=ERROR
 # Logger provided to your application:
 logger.application=ERROR
 
-play {
-  akka {
-    event-handlers = ["akka.event.slf4j.Slf4jEventHandler"]
-    loglevel = ERROR
-    actor {
-      dbExecutionContext = {
-        fork-join-executor {
-          parallelism-min = 128
-          parallelism-max = 128
-        }
-      }
-    }
-  }
-}
+#play {
+#  akka {
+#    event-handlers = ["akka.event.slf4j.Slf4jEventHandler"]
+#    loglevel = ERROR
+#    actor {
+#      dbExecutionContext = {
+#        fork-join-executor {
+#          parallelism-min = 128
+#          parallelism-max = 128
+#        }
+#      }
+#    }
+#  }
+#}

+ 2 - 3
play-scala-mongodb/project/Build.scala

@@ -3,15 +3,14 @@ import Keys._
 
 object ApplicationBuild extends Build {
 
-  val appName         = "play-scala"
+  val appName         = "play-scala-mongodb"
   val appVersion      = "1.0-SNAPSHOT"
 
   val appDependencies = Seq(
-    "org.reactivemongo" %% "play2-reactivemongo" % "0.9-SNAPSHOT"
+    "org.reactivemongo" %% "play2-reactivemongo" % "0.9"
   )
 
   val main = play.Project(appName, appVersion, appDependencies).settings(
-    resolvers += "Sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/"
   )
 
 }