Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将混合 Java/Scala 项目从 Maven 迁移到 SBT。当我运行“测试”时,我在抽象类中遇到很多错误,其中包含 JUnit 测试方法。它们都具有 Abstract*TestCase 形式的名称。Maven 安全地忽略了这些类,因为它们的名称不以单词 Test 开头或结尾,并且正确地执行了它们的子类。我怎样才能让 SBT 以同样的方式表现?
我在这里提出了这种行为的要求。