Maven 提供的范围如何与测试范围交互

发布于 2025-01-11 14:46:42 字数 156 浏览 0 评论 0原文

我的项目有一个依赖项(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

权谋诡计 2025-01-18 14:46:42

来自官方文档

具有此范围的依赖项将添加到用于编译和测试的类路径中,但不会添加到运行时类路径中。

所以是的,在测试阶段,依赖项需要在本地 Maven 存储库中可用(或下载)。

From official documentation:

A dependency with this scope is added to the classpath used for compilation and test, but not the runtime classpath.

So yes, during test phase the dependency will need to be available (or will be downloaded) in your local Maven repo.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文