如何解决 Maven 3 中的本地工件?

发布于 2024-11-02 21:47:14 字数 242 浏览 2 评论 0原文

如何在 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 技术交流群。

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

发布评论

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

评论(2

毁梦 2024-11-09 21:47:14

ArtifactFactory(M3 也已弃用)的最佳替代品是 RepositorySystemcreateDependencyArtifact,...操作可用。

The best replacement of ArtifactFactory (also deprecated with M3) is RepositorySystem. createDependencyArtifact,... operations are available.

清醇 2024-11-09 21:47:14

回答我自己的问题:

/**
 * @component
 */
private ArtifactFactory artifactFactory;
/**
 * The local maven repository.
 *
 * @parameter expression="${localRepository}"
 * @required
 * @readonly
 */
private ArtifactRepository localRepository;
[...]
Artifact artifact = artifactFactory.createArtifactWithClassifier(groupId, artifactId, version, type, classifier);
artifact.setFile(new File(localRepository.getBasedir(), localRepository.pathOf(artifact)));

Answering my own question:

/**
 * @component
 */
private ArtifactFactory artifactFactory;
/**
 * The local maven repository.
 *
 * @parameter expression="${localRepository}"
 * @required
 * @readonly
 */
private ArtifactRepository localRepository;
[...]
Artifact artifact = artifactFactory.createArtifactWithClassifier(groupId, artifactId, version, type, classifier);
artifact.setFile(new File(localRepository.getBasedir(), localRepository.pathOf(artifact)));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文