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.
我有两个项目需要相同的测试资源。我使用 maven 进行依赖处理,使用 eclipse 运行测试。如何在不克隆的情况下与 maven 共享测试资源?
您可以将测试资源放在另一个项目或 Maven 模块中,并从其他两个项目中添加对这个项目的依赖项(范围test应该可以工作)。新模块/项目中的测试资源src/main/resources不应该进入src/test/resources(我认为,否则它们将仅在test该项目的目标期间可用)
test
src/main/resources
src/test/resources