如何解决 Maven 3 中的本地工件?
如何在 Maven 3 中解析本地存储库中的工件路径?
在 Maven 2 中,您可以使用 ArtifactResolver 用相关信息填充 Artifact 对象,但此类在 Maven 3 中已被弃用。
How do I resolve an artifact's path in the local repository in Maven 3?
In Maven 2 you could use ArtifactResolver to populate an Artifact object with the relevant information, but this class has been deprecated in Maven 3.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ArtifactFactory
(M3 也已弃用)的最佳替代品是RepositorySystem
。createDependencyArtifact
,...操作可用。The best replacement of
ArtifactFactory
(also deprecated with M3) isRepositorySystem
.createDependencyArtifact
,... operations are available.回答我自己的问题:
Answering my own question: