Fixes to build with SBT 0.11.3

This commit is contained in:
Josh Suereth 2012-05-07 08:15:42 -04:00
parent a0cbb9e488
commit 6775c0e684
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ object Packaging {
def localWindowsPattern = "[organisation]/[module]/[revision]/[module].[ext]"
val settings: Seq[Setting[_]] = packagerSettings ++ Seq(
sbtLaunchJarUrl <<= sbtVersion apply ("http://typesafe.artifactoryonline.com/typesafe/ivy-releases/org.scala-tools.sbt/sbt-launch/"+_+"/sbt-launch.jar"),
sbtLaunchJarUrl <<= sbtVersion apply ("http://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/"+_+"/sbt-launch.jar"),
sbtLaunchJarLocation <<= target apply (_ / "sbt-launch.jar"),
sbtLaunchJar <<= (sbtLaunchJarUrl, sbtLaunchJarLocation) map { (uri, file) =>
import dispatch._

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.0"),
addSbtPlugin("com.typesafe" % "sbt-native-packager" % "0.4.1"),
libraryDependencies += "net.databinder" %% "dispatch-http" % "0.8.6"
)
}