Как изменить настройки и задачи в плагине в зависимости от доступности другого плагина?

В build.sbt Файл плагина, который я написал, у меня есть следующие две строки:

scroogeThriftDependencies in Compile := Seq("shared_2.10")

mappings in (Compile,packageBin) ~= { (ms: Seq[(File, String)]) =>
  ms filter { case (file, toPath) =>
    !toPath.startsWith(s"shared")
  }
}

но я хочу сделать это, только если Build также содержит плагин Scrooge. Как это можно сделать?

Я попробовал подход ниже, но он не работал:

lazy val onlyWithScrooge = taskKey[Unit]("Executes only if the Scrooge plugin is part of the build")

onlyWithScrooge := {
  val structure: BuildStructure = Project.extract(state.value).structure
  val pluginNames = structure.units.values.map { un => un.unit.plugins.detected }
  pluginNames.foreach(
    plugins => {
      plugins.plugins.modules.foreach {
        plugin =>
          if (plugin._1 == "com.twitter.scrooge.ScroogeSBT") {
            // i get here at least
            scroogeThriftDependencies in Compile := Seq("shared_2.10")
            mappings in (Compile,packageBin) ~= { (ms: Seq[(File, String)]) =>
              ms filter { case (file, toPath) =>
                !toPath.startsWith(s"shared")
              }
            }
          }
      }
    }
  )
}

(scroogeGen in Compile) <<= (scroogeGen in Compile) dependsOn onlyWithScrooge

0 ответов

Другие вопросы по тегам