diff --git a/tutorial/index.html b/tutorial/index.html index 4c7fb68..3e3c228 100644 --- a/tutorial/index.html +++ b/tutorial/index.html @@ -17,10 +17,10 @@

Modern-web-applictation

MongoDB integration

I opted to use the Reactive Mongo driver to give me scalability with an asynchronous, non-blocking interface to MongoDB. The guys over at Play-ReactiveMongo have made this integration even easier with a Play 2 plugin.

Adding the plugin to an app is simples...

-

First, add the dependency - see Build.scala

+

First, add the dependency - see build.sbt

         libraryDependencies ++= Seq(
-           "org.reactivemongo" %% "play2-reactivemongo" % "0.10.2"
+           "org.reactivemongo" %% "play2-reactivemongo" % "0.10.5.0.akka23"
         )
         

Once that's done, configure MongoDB in the app config - see application.conf