-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugins.sbt
More file actions
executable file
·26 lines (19 loc) · 1.1 KB
/
plugins.sbt
File metadata and controls
executable file
·26 lines (19 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releases/"
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
resolvers += "Flyway" at "https://davidmweber.github.io/flyway-sbt.repo"
resolvers += Resolver.url("play-sbt-plugins", url("https://dl.bintray.com/playframework/sbt-plugin-releases/"))(
Resolver.ivyStylePatterns
)
// Database migration
addSbtPlugin("io.github.davidmweber" % "flyway-sbt" % "7.4.0")
// Slick code generation
addSbtPlugin("com.github.tototoshi" % "sbt-slick-codegen" % "2.2.0")
// The Play plugin
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.9.6")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.4.3")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.10.4")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("io.github.play-swagger" % "sbt-play-swagger" % "2.0.4")
addSbtPlugin("com.github.sbt" % "sbt-license-report" % "1.7.0")
addSbtPlugin("com.codecommit" % "sbt-github-packages" % "0.5.3")
addSbtPlugin("com.disneystreaming.smithy4s" % "smithy4s-sbt-codegen" % "0.17.19")