20 lines
505 B
Scala
20 lines
505 B
Scala
name := """breakout-custom"""
|
|
|
|
version := "1.0-SNAPSHOT"
|
|
|
|
lazy val root = (project in file(".")).enablePlugins(PlayScala)
|
|
|
|
scalaVersion := "2.13.14"
|
|
|
|
libraryDependencies ++= Seq(
|
|
guice,
|
|
filters
|
|
)
|
|
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "7.0.0" % Test
|
|
|
|
|
|
// Adds additional packages into Twirl
|
|
//TwirlKeys.templateImports += "com.example.controllers._"
|
|
|
|
// Adds additional packages into conf/routes
|
|
// play.sbt.routes.RoutesKeys.routesImport += "com.example.binders._"
|