我正在编写一个需要特定设置的插件:configUrl
如果我在我的中指定该设置,build.conf
它将如下所示:
MyPlugin.configUrl := "http://..../..."
然后我可以使用命令行来执行此操作:
sbt 'set MyPlugin.configUrl := "http://..../..."' performAction
有没有更好的方法可以让我在构建中没有该设置?
如果我在sbt
没有该设置的情况下开始,我会收到以下错误:
[error] Reference to undefined setting:
[error]
[error] *:config-url from *:application-configuration
我搜索了谷歌,但找不到在命令行上提供设置的方法,如下所示:
sbt config-url="http://..../..."