Created
October 31, 2018 11:27
-
-
Save danielkmariam/2f27d05b9e6dda9860d08540f9e5de08 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name := """play-training""" | |
organization := "com.example" | |
version := "1.0-SNAPSHOT" | |
lazy val root = (project in file(".")).enablePlugins(PlayScala) | |
scalaVersion := "2.12.6" | |
libraryDependencies += guice | |
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "3.1.2" % Test | |
libraryDependencies += "com.dripower" %% "play-circe" % "2610.0" | |
// Adds additional packages into Twirl | |
//TwirlKeys.templateImports += "com.example.controllers._" | |
// Adds additional packages into conf/routes | |
// play.sbt.routes.RoutesKeys.routesImport += "com.example.binders._" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment