32 lines
1.2 KiB
Scala
32 lines
1.2 KiB
Scala
name := """neon-vertigo-api"""
|
|
organization := "me.artemis"
|
|
|
|
version := "1.0-SNAPSHOT"
|
|
|
|
lazy val root = (project in file(".")).enablePlugins(PlayScala)
|
|
|
|
scalaVersion := "3.8.4"
|
|
|
|
libraryDependencies += guice
|
|
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "7.0.2" % Test
|
|
|
|
// Source: https://mvnrepository.com/artifact/org.postgresql/postgresql
|
|
libraryDependencies += "org.postgresql" % "postgresql" % "42.7.13"
|
|
|
|
// Source: https://mvnrepository.com/artifact/org.playframework/play-slick
|
|
libraryDependencies += "org.playframework" %% "play-slick" % "6.2.0"
|
|
// Source: https://mvnrepository.com/artifact/org.playframework/play-slick-evolutions
|
|
libraryDependencies += "org.playframework" %% "play-slick-evolutions" % "6.2.0"
|
|
|
|
// Source: https://mvnrepository.com/artifact/de.mkammerer/argon2-jvm
|
|
libraryDependencies += "de.mkammerer" % "argon2-jvm" % "2.12"
|
|
|
|
// Source: https://mvnrepository.com/artifact/com.hivemq/hivemq-mqtt-client
|
|
libraryDependencies += "com.hivemq" % "hivemq-mqtt-client" % "1.3.17"
|
|
|
|
// Adds additional packages into Twirl
|
|
//TwirlKeys.templateImports += "me.artemis.controllers._"
|
|
|
|
// Adds additional packages into conf/routes
|
|
// play.sbt.routes.RoutesKeys.routesImport += "me.artemis.binders._"
|