mirror of https://github.com/sbt/sbt.git
10 lines
348 B
Scala
10 lines
348 B
Scala
import sbt._
|
|
import Keys._
|
|
|
|
object SbtExtras extends Build {
|
|
// This build creates a SBT plugin with handy features *and* bundles the SBT script for distribution.
|
|
val root = Project("sbt-packaging", file(".")) settings(Packaging.settings:_*)
|
|
|
|
val meta = Project("metapackage", file("metapackage")) settings(MetaPackaging.settings(root):_*)
|
|
}
|