Maven 提供的范围如何与测试范围交互
我的项目有一个依赖项(Provided Scope
),那么如果我在Test Scope
下运行我的项目进行单元测试,那么Maven如何在单元测试期间找到它需要的依赖项? Maven 会只使用本地 Maven 存储库中的存储库(如果存在)吗? 谢谢。
My project has a dependency (Provided Scope
), then If I run my project under Test Scope
for unit tests, then how does Maven find this dependency it needs during unit testing?
Would Maven just use the one in local maven repository (if exists)?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自官方文档:
所以是的,在测试阶段,依赖项需要在本地 Maven 存储库中可用(或下载)。
From official documentation:
So yes, during test phase the dependency will need to be available (or will be downloaded) in your local Maven repo.