Created
April 14, 2016 02:15
-
-
Save strobe/c67494d84ab8aa122b62c27ff0ffa4c3 to your computer and use it in GitHub Desktop.
SBT TIPS
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
// 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