-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
23 lines (17 loc) · 758 Bytes
/
build.sbt
File metadata and controls
23 lines (17 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name := """aa"""
organization := "com.cerezo"
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "3.3.1"
libraryDependencies ++= Seq(
guice,
"org.scalatestplus.play" %% "scalatestplus-play" % "7.0.2" % Test,
"org.playframework" %% "play-slick" % "6.2.0",
"org.playframework" %% "play-slick-evolutions" % "6.2.0",
"org.postgresql" % "postgresql" % "42.7.7",
"org.typelevel" %% "cats-core" % "2.13.0"
)
// Adds additional packages into Twirl
//TwirlKeys.templateImports += "com.cerezo.controllers._"
// Adds additional packages into conf/routes
// play.sbt.routes.RoutesKeys.routesImport += "com.cerezo.binders._"