Skip to content

Commit

Permalink
Build.scala --> build.sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
mbSmaga committed Apr 22, 2015
1 parent d31fce9 commit 64a9e3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tutorial/index.html
Expand Up @@ -17,10 +17,10 @@ <h2>Modern-web-applictation</h2>
<h2>MongoDB integration</h2>
<p>I opted to use the Reactive Mongo driver to give me scalability with an asynchronous, non-blocking interface to MongoDB. The guys over at <a href="https://github.com/ReactiveMongo/Play-ReactiveMongo" target="_blank">Play-ReactiveMongo</a> have made this integration even easier with a Play 2 plugin.</p>
<p>Adding the plugin to an app is simples...</p>
<p>First, add the dependency - see <a href="https://github.com/lashford/modern-web-template/blob/master/project/build.scala" target="_blank">Build.scala</a></p>
<p>First, add the dependency - see <a href="https://github.com/lashford/modern-web-template/blob/master/build.sbt" target="_blank">build.sbt</a></p>
<code><pre>
libraryDependencies ++= Seq(
"org.reactivemongo" %% "play2-reactivemongo" % "0.10.2"
"org.reactivemongo" %% "play2-reactivemongo" % "0.10.5.0.akka23"
)
</pre></code>
<p>Once that's done, configure MongoDB in the app config - see <a href="https://github.com/lashford/modern-web-template/blob/master/conf/application.conf" target="_blank">application.conf</a></p>
Expand Down

0 comments on commit 64a9e3e

Please sign in to comment.