mirror of https://github.com/sbt/sbt.git
Improve disabling publish artificial root.
Not only is this safer, it also disables delivering the ivy file.
This commit is contained in:
parent
03dc3f6fd0
commit
58a2e634e2
|
|
@ -58,7 +58,10 @@ object Build {
|
||||||
autoGeneratedProject := true
|
autoGeneratedProject := true
|
||||||
)
|
)
|
||||||
def defaultAggregatedProject(id: String, base: File, agg: Seq[ProjectRef]): Project =
|
def defaultAggregatedProject(id: String, base: File, agg: Seq[ProjectRef]): Project =
|
||||||
defaultProject(id, base).aggregate(agg: _*).settings(Keys.publishArtifact := false)
|
defaultProject(id, base).aggregate(agg: _*).settings(
|
||||||
|
Keys.publish := (),
|
||||||
|
Keys.publishLocal := ()
|
||||||
|
)
|
||||||
|
|
||||||
@deprecated("Use Attributed.data", "0.13.0")
|
@deprecated("Use Attributed.data", "0.13.0")
|
||||||
def data[T](in: Seq[Attributed[T]]): Seq[T] = Attributed.data(in)
|
def data[T](in: Seq[Attributed[T]]): Seq[T] = Attributed.data(in)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue