15 lines
509 B
Scala
15 lines
509 B
Scala
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
|
|
|
|
libraryDependencies += "com.h2database" % "h2" % "1.4.196"
|
|
|
|
// Database migration
|
|
// https://github.com/flyway/flyway-sbt
|
|
addSbtPlugin("io.github.davidmweber" % "flyway-sbt" % "6.2.2")
|
|
|
|
// Slick code generation
|
|
// https://github.com/tototoshi/sbt-slick-codegen
|
|
addSbtPlugin("com.github.tototoshi" % "sbt-slick-codegen" % "1.4.0")
|
|
|
|
// The Play plugin
|
|
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.8.1")
|