Scala-Play-Slick-Demo/project/plugins.sbt
2020-05-16 15:40:23 +05:30

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")