breakout-custom/build.sbt
François Pelletier 0789487841 Ajout CORS
2024-08-31 23:27:03 -04:00

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._"