Disable publishing artificial root.

This commit is contained in:
Dale Wijnand 2015-02-22 00:38:01 +00:00 committed by Eugene Yokota
parent 999f42ab4f
commit 03dc3f6fd0
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ object Build {
autoGeneratedProject := true
)
def defaultAggregatedProject(id: String, base: File, agg: Seq[ProjectRef]): Project =
defaultProject(id, base).aggregate(agg: _*)
defaultProject(id, base).aggregate(agg: _*).settings(Keys.publishArtifact := false)
@deprecated("Use Attributed.data", "0.13.0")
def data[T](in: Seq[Attributed[T]]): Seq[T] = Attributed.data(in)