Skip to content

Instantly share code, notes, and snippets.

@sameei
Created July 2, 2018 13:15
Show Gist options
  • Save sameei/789a1cc18f01be9db5b3573b6f42229e to your computer and use it in GitHub Desktop.
Save sameei/789a1cc18f01be9db5b3573b6f42229e to your computer and use it in GitHub Desktop.
SBT Plugins with Link
// The Typesafe repository
resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releases/"
// Typesafe snapshots
// resolvers += "Typesafe Snapshots" at "https://repo.typesafe.com/typesafe/snapshots/"
// Use the Play sbt plugin for Play projects
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.6.7")
// https://github.com/sbt/sbt-protobuf
addSbtPlugin("com.github.gseitz" % "sbt-protobuf" % "0.5.2")
// addSbtPlugin("com.github.gseitz" % "sbt-protobuf" % "0.6.3")
// https://github.com/sbt/sbt-native-packager
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.5")
// https://github.com/sbt/sbt-assembly
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.7")
// https://github.com/jrudolph/sbt-dependency-graph
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.0")
// And ...
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "0.8.5")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.6.1")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment