From 6775c0e6849fbd9a137f0b44b08d006b196e3c45 Mon Sep 17 00:00:00 2001 From: Josh Suereth Date: Mon, 7 May 2012 08:15:42 -0400 Subject: [PATCH] Fixes to build with SBT 0.11.3 --- project/packaging.scala | 2 +- project/project/plugins.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/project/packaging.scala b/project/packaging.scala index 3a09123a5..bce170993 100644 --- a/project/packaging.scala +++ b/project/packaging.scala @@ -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._ diff --git a/project/project/plugins.scala b/project/project/plugins.scala index c456b6265..2cef8a1aa 100644 --- a/project/project/plugins.scala +++ b/project/project/plugins.scala @@ -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" ) }