mirror of https://github.com/sbt/sbt.git
Fixes to build with SBT 0.11.3
This commit is contained in:
parent
a0cbb9e488
commit
6775c0e684
|
|
@ -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._
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue