From e01f5f5ef11240fcc1c63d750ef32a664a5aefb7 Mon Sep 17 00:00:00 2001 From: jvican Date: Tue, 2 May 2017 20:19:27 +0200 Subject: [PATCH] Fix auto-plugins temporarily until #3163 is fixed Unfortunately, I think this uncovers a bug in duplicated computation of settings in the `ThisBuild` and `Global` axis. --- sbt/src/sbt-test/project/auto-plugins/build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbt/src/sbt-test/project/auto-plugins/build.sbt b/sbt/src/sbt-test/project/auto-plugins/build.sbt index 8038f2a06..058343927 100644 --- a/sbt/src/sbt-test/project/auto-plugins/build.sbt +++ b/sbt/src/sbt-test/project/auto-plugins/build.sbt @@ -52,9 +52,9 @@ check := { same(ddel, None, "del in projD") // val buildValue = (demo in ThisBuild).value - same(buildValue, "build 0", "demo in ThisBuild") + same(buildValue, "build 1", "demo in ThisBuild") // this is temporary, should be 0 until # is fixed val globalValue = (demo in Global).value - same(globalValue, "global 0", "demo in Global") + same(globalValue, "global 1", "demo in Global") // this is temporary, should be 0 until # is fixed val projValue = (demo in projC).?.value same(projValue, Some("project projC Q R"), "demo in projC") val qValue = (del in projC in q).?.value