mirror of https://github.com/sbt/sbt.git
13 lines
448 B
Scala
13 lines
448 B
Scala
import sbt._
|
|
import Keys._
|
|
|
|
object PluginBuild extends Build {
|
|
override def projects = Seq(root)
|
|
|
|
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.3.0"),
|
|
libraryDependencies += "net.databinder" %% "dispatch-http" % "0.8.6"
|
|
)
|
|
}
|