Skip to content

Instantly share code, notes, and snippets.

@erwan
Created March 13, 2015 11:10
Show Gist options
  • Select an option

  • Save erwan/baa05abc4ab004d0d95f to your computer and use it in GitHub Desktop.

Select an option

Save erwan/baa05abc4ab004d0d95f to your computer and use it in GitHub Desktop.

Revisions

  1. erwan created this gist Mar 13, 2015.
    17 changes: 17 additions & 0 deletions build.scala
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    name := "common"

    resolvers += "Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/"

    libraryDependencies ++= Seq(
    "org.reactivemongo" %% "play2-reactivemongo" % "0.10.5.0.akka23",
    "com.newrelic.agent.java" % "newrelic-api" % "2.21.3",
    "org.apache.httpcomponents" % "httpclient" % "4.3.2",
    "org.apache.httpcomponents" % "httpclient" % "4.3.2")

    TwirlKeys.templateImports ++= Seq(
    "_root_.common.models._",
    "_root_.common.{ Ctx, Wroom }",
    "_root_.common.utils.{ Router => R }",
    "_root_.common.models.PartialRepository")

    incOptions := incOptions.value.withNameHashing(true)