breakout-custom/build.sbt

21 lines
505 B
Text
Raw Normal View History

2024-09-01 02:30:44 +00:00
name := """breakout-custom"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.13.14"
2024-09-01 03:27:03 +00:00
libraryDependencies ++= Seq(
guice,
filters
)
2024-09-01 02:30:44 +00:00
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "7.0.0" % Test
2024-09-01 03:27:03 +00:00
2024-09-01 02:30:44 +00:00
// Adds additional packages into Twirl
//TwirlKeys.templateImports += "com.example.controllers._"
// Adds additional packages into conf/routes
// play.sbt.routes.RoutesKeys.routesImport += "com.example.binders._"