Skip to content

Instantly share code, notes, and snippets.

@strobe
Created April 14, 2016 02:15
Show Gist options
  • Save strobe/c67494d84ab8aa122b62c27ff0ffa4c3 to your computer and use it in GitHub Desktop.
Save strobe/c67494d84ab8aa122b62c27ff0ffa4c3 to your computer and use it in GitHub Desktop.
SBT TIPS
// explicitly set up plugin scala version
libraryDependencies += sbtPluginExtra(
m = "com.x" % "sbt-x" % "1.5.1", // Plugin module name and version
sbtV = "0.13.11",
scalaV = "2.11.8" // Scala version compiled the plugin
)
// bintray resolver
resolvers += Resolver.url(
"bintray-strobe-sbt-plugins",
url("http://dl.bintray.com/<username>/<reponame>"))(
Resolver.ivyStylePatterns)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment