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.
我有模块A和B. B是 的子项目A。
A
B
在模块测试中,A我想使用来自B.
如何在不指定任何编译依赖项的情况下指定A.tests应该在之后执行?B.build
A.tests
B.build
您应该能够在 A 的 buildscript 中声明该依赖项:
tests.dependsOn(":B:build")
其中 tests 是 A 中的测试任务(你的意思是“测试”吗?)
干杯,勒内