Scala-Play-Slick-Demo/project/plugins.sbt

15 lines
509 B
Plaintext
Raw Normal View History

2020-05-16 10:10:23 +00:00
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")