1

我有一个 AutoPlugin,它聚合了几个第三方插件并为我们公司定制了它们的设置。对于大多数插件,将它们放在以下位置即可正常工作projectSettings

override lazy val projectSettings = Seq( somePluginSetting := "whatever" )

我也尝试为 ScalaStyle 这样做:

import org.scalastyle.sbt.ScalastylePlugin.scalastyleConfigUrl

override lazy val projectSettings = Seq(
  scalastyleConfigUrl := Some(url("http://git.repo/scalastyle-config.xml"))
)

此设置在使用我的插件的项目中永远不可见,而是 sbt 使用插件提供的默认值:

> inspect scalastyleConfigUrl
[info] Setting: scala.Option[java.net.URL] = None
[info] Description:
[info]  Scalastyle configuration file as a URL
[info] Provided by:
[info]  {file:/Users/kaeser/Documents/workspace/ci-test-project/}root/*:scalastyleConfigUrl
[info] Defined at:
[info]  (org.scalastyle.sbt.ScalastylePlugin) Plugin.scala:101
[info] Delegates:
[info]  *:scalastyleConfigUrl
[info]  {.}/*:scalastyleConfigUrl
[info]  */*:scalastyleConfigUrl
[info] Related:
[info]  test:scalastyleConfigUrl

当我将设置直接放入 build.sbt 时,它按预期工作。

我做了一个简单的示例 sbt 插件来显示问题:https ://github.com/jastice/sbt-customsettings

问题可能是什么?

4

1 回答 1

3

此问题很可能是由应用设置的顺序引起的。如果您的插件和您所依赖的插件都是自动插件,则该requires值决定了包含项目设置的顺序。

Scalastyle 仍然使用旧的插件格式。它也没有遵循最佳实践。它不应该设置projectSettings,因为这样很难在多项目构建中禁用它。它还阻止您从自定义插件轻松扩展它。我不确定是否定义了应用项目设置的顺序,还是由加载插件的顺序确定。

最简单的解决方法是使用 ScalastyleAutoPlugin并依赖它的requires值。否则,找出决定顺序的因素可能非常棘手。

于 2014-10-23T21:36:11.000 回答