Last active
January 4, 2019 22:13
-
-
Save pshirshov/4f85b7012eba3e28f7bfbcf62711cfba to your computer and use it in GitHub Desktop.
sbt plugins to enable globally
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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