diff --git a/sbt/src/sbt-test/project/global-plugin/global/plugins/B.scala b/sbt/src/sbt-test/project/global-plugin/global/plugins/B.scala deleted file mode 100644 index 9d28ecc84..000000000 --- a/sbt/src/sbt-test/project/global-plugin/global/plugins/B.scala +++ /dev/null @@ -1,7 +0,0 @@ -import sbt._ - -object GlobalLegacyPlugin extends sbt.Plugin { - import sbt.Keys._ - val globalLegacyPluginSetting = SettingKey[String]("A top level setting declared by a legacy plugin") - val useGlobalLegacyPluginSetting = globalLegacyPluginSetting in Global -} diff --git a/sbt/src/sbt-test/project/global-plugin/global/useGlobalLegacyPlugin.sbt b/sbt/src/sbt-test/project/global-plugin/global/useGlobalLegacyPlugin.sbt deleted file mode 100644 index d17e24a85..000000000 --- a/sbt/src/sbt-test/project/global-plugin/global/useGlobalLegacyPlugin.sbt +++ /dev/null @@ -1,5 +0,0 @@ -/* - If the GlobalLegacyPlugin 'in' statements do not register and get - brought in to the global scope, this will fail - */ -globalLegacyPluginSetting := "foo"