SBT - 包括除测试以外的所有内容的依赖

SBT - include dependency for everything but test

我有一个依赖项 (stagemonitor.org),我想将其包含在除 "test" 和 "test:test" 之外的所有内容中。我如何为除 "test" 之外的所有内容添加依赖项?我正在使用 SBT 0.13.8.

谢谢,

约翰

您可能需要通过 managedClasspath in Test 手动排除内容。 查看我们在 0.13.9-RC1 上添加的 -= 运算符。