Created
August 6, 2014 13:30
-
-
Save mefellows/d597741b11a8bebeadba to your computer and use it in GitHub Desktop.
Scala - Travis CI Plugins Sample plugins.sbt File
This file contains 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
resolvers += Resolver.url( | |
"bintray-sbt-plugin-releases", | |
url("http://dl.bintray.com/content/sbt/sbt-plugin-releases"))( | |
Resolver.ivyStylePatterns) | |
addSbtPlugin("me.lessis" % "bintray-sbt" % "0.1.1") | |
resolvers += Classpaths.sbtPluginReleases | |
resolvers += Classpaths.typesafeReleases | |
addSbtPlugin("org.scoverage" %% "sbt-scoverage" % "0.99.5.1") | |
addSbtPlugin("com.sksamuel.scoverage" %% "sbt-coveralls" % "0.0.5") | |
addSbtPlugin("com.typesafe.sbt" % "sbt-pgp" % "0.8.3") | |
// Add the following to have Git manage your build versions | |
resolvers += "jgit-repo" at "http://download.eclipse.org/jgit/maven" | |
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "0.6.4") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment