Fixes for build to work with SBT 0.12.0

This commit is contained in:
Josh Suereth 2012-08-01 12:16:13 -04:00
parent be912e904b
commit 75aedbc3d2
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ object PluginBuild extends Build {
val root = Project("root", file(".")) settings(
resolvers += Resolver.url("scalasbt", new URL("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases"))(Resolver.ivyStylePatterns),
addSbtPlugin("com.typesafe" % "sbt-native-packager" % "0.4.3"),
libraryDependencies += "net.databinder" %% "dispatch-http" % "0.8.6"
addSbtPlugin("com.typesafe" % "sbt-native-packager" % "0.4.4"),
libraryDependencies += "net.databinder" % "dispatch-http_2.9.1" % "0.8.6"
)
}