2
sbt提供了許多不同的configurationsCompile
,Test
,Runtime
等。默認情況下,Test
取決於Runtime
和Runtime
取決於Compile
,這意味着Test
取決於Compile
。使默認sbt配置依賴於另一個
在我的項目中,我添加了一個自定義配置,我們稱之爲Generators
。我想使Generators
取決於Compile
,因此Test
取決於Generators
。
實例化Generators配置時,可以輕鬆實現這一點。
lazy val Generators = config("generators") extend(Runtime)
有沒有一種方法,使Test
取決於Generators
因爲Test
爲SBT提供。是否可以修改或以某種方式覆蓋?