Build no uses released packaging plugin.

This commit is contained in:
Josh Suereth 2012-01-16 15:06:37 -05:00
parent d852b4bc06
commit d8908cc393
1 changed files with 5 additions and 3 deletions

View File

@ -4,7 +4,9 @@ import Keys._
object PluginBuild extends Build {
override def projects = Seq(root)
val root = Project("root", file(".")) dependsOn(packager) settings(libraryDependencies += "net.databinder" %% "dispatch-http" % "0.8.6")
lazy val packager = RootProject(file("/home/jsuereth/projects/typesafe/sbt-native-packager"))
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.1.0"),
libraryDependencies += "net.databinder" %% "dispatch-http" % "0.8.6"
)
}