mirror of https://github.com/sbt/sbt.git
Build no uses released packaging plugin.
This commit is contained in:
parent
d852b4bc06
commit
d8908cc393
|
|
@ -4,7 +4,9 @@ import Keys._
|
||||||
object PluginBuild extends Build {
|
object PluginBuild extends Build {
|
||||||
override def projects = Seq(root)
|
override def projects = Seq(root)
|
||||||
|
|
||||||
val root = Project("root", file(".")) dependsOn(packager) settings(libraryDependencies += "net.databinder" %% "dispatch-http" % "0.8.6")
|
val root = Project("root", file(".")) settings(
|
||||||
|
resolvers += Resolver.url("scalasbt", new URL("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases"))(Resolver.ivyStylePatterns),
|
||||||
lazy val packager = RootProject(file("/home/jsuereth/projects/typesafe/sbt-native-packager"))
|
addSbtPlugin("com.typesafe" % "sbt-native-packager" % "0.1.0"),
|
||||||
|
libraryDependencies += "net.databinder" %% "dispatch-http" % "0.8.6"
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue