mirror of https://github.com/sbt/sbt.git
Remove re-setting publishArtifact in Test, defined in commonSettings
> show root/test:publishArtifact
[info] lm/test:publishArtifact
[info] false
[info] root/test:publishArtifact
[info] false
> git diff
[info] diff --git a/build.sbt b/build.sbt
[info] index fed7303..6f1fb03 100644
[info] --- a/build.sbt
[info] +++ b/build.sbt
[info] @@ -37,7 +37,6 @@ lazy val root = (project in file(".")).
[info] publish := {},
[info] publishLocal := {},
[info] publishArtifact in Compile := false,
[info] - publishArtifact in Test := false,
[info] publishArtifact := false,
[info] customCommands
[info] )
[info] @@ -50,7 +49,6 @@ lazy val lm = (project in file("librarymanagement")).
[info] utilLogging, sbtIO, utilTesting % Test,
[info] utilCollection, utilCompletion, ivy, jsch, sbtSerialization, scalaReflect.value, launcherInterface),
[info] resourceGenerators in Compile <+= (version, resourceManaged, streams, compile in Compile) map Util.generateVersionFile,
[info] - publishArtifact in Test := false,
[info] binaryIssueFilters ++= Seq()
[info] )
[info]
RELOAD > reload
[info] Loading global plugins from /Users/dnw/.dotfiles/.sbt/0.13/plugins
[info] Loading project definition from /d/sbt-library-management/project
[info] Set current project to LM Root (in build file:/d/sbt-library-management/)
> show root/test:publishArtifact
[info] lm/test:publishArtifact
[info] false
[info] root/test:publishArtifact
[info] false
This commit is contained in:
parent
76a1f12b10
commit
7db91141e1
|
|
@ -37,7 +37,6 @@ lazy val root = (project in file(".")).
|
|||
publish := {},
|
||||
publishLocal := {},
|
||||
publishArtifact in Compile := false,
|
||||
publishArtifact in Test := false,
|
||||
publishArtifact := false,
|
||||
customCommands
|
||||
)
|
||||
|
|
@ -50,7 +49,6 @@ lazy val lm = (project in file("librarymanagement")).
|
|||
utilLogging, sbtIO, utilTesting % Test,
|
||||
utilCollection, utilCompletion, ivy, jsch, sbtSerialization, scalaReflect.value, launcherInterface),
|
||||
resourceGenerators in Compile <+= (version, resourceManaged, streams, compile in Compile) map Util.generateVersionFile,
|
||||
publishArtifact in Test := false,
|
||||
binaryIssueFilters ++= Seq()
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue