mirror of https://github.com/sbt/sbt.git
8 lines
224 B
Scala
8 lines
224 B
Scala
|
|
import sbt._
|
||
|
|
import Keys._
|
||
|
|
|
||
|
|
object SbtExtras extends Build {
|
||
|
|
// TODO - Detect Debian distribution and enable debian settings for the project.
|
||
|
|
val root = Project("sbt-extras", file(".")) settings(DebianPkg.settings:_*)
|
||
|
|
}
|