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 10.0.1 2018-04-17
1.2.41
4.7
如果我们可以使用拼图模块系统会更好
有使用 Gradle 和 JUnit 5 的文档和示例项目。
如果您想使用 Kotlin DSL,您必须通过以下方式对其进行调整:
tasks.withType<Test>().configureEach { useJUnitPlatform() }
对于 Jigsaw,Gradle 提供了实验性支持,并且插件的一个分支提供了附加功能。
马克菲利普的回答有效。这是另一种方法:
val test: Test by tasks test.useJUnitPlatform()