Skip to content

Instantly share code, notes, and snippets.

@pshirshov
Last active January 4, 2019 22:13
Show Gist options
  • Save pshirshov/4f85b7012eba3e28f7bfbcf62711cfba to your computer and use it in GitHub Desktop.
Save pshirshov/4f85b7012eba3e28f7bfbcf62711cfba to your computer and use it in GitHub Desktop.
sbt plugins to enable globally
cat > ~/.sbt/1.0/plugins/build.sbt <<EOL
scalaVersion := "2.12.8"
// https://github.com/coursier/coursier
addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.1.0-M8")
//https://github.com/aiyanbo/sbt-dependency-updates
addSbtPlugin("org.jmotor.sbt" % "sbt-dependency-updates" % "1.1.13")
// https://github.com/sbt/sbt-dirty-money
addSbtPlugin("com.eed3si9n" % "sbt-dirty-money" % "0.2.0")
//https://github.com/rtimush/sbt-updates
//addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.3.4")
EOL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment