maven插件存储在哪里

发布于 2024-08-23 10:52:25 字数 98 浏览 10 评论 0 原文

Maven 插件存储在哪里?也在本地存储库中?如果您使用 eclipse 构建应用程序会发生什么?它将插件存储在 eclipse/plugins 文件夹中还是仍然存储在本地存储库中?

Where are maven plugins stored? in the local repository as well? what happens if you build your application with eclipse? does it store the plugins inside the eclipse/plugins folder or still in the local repository?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

以歌曲疗慰 2024-08-30 10:52:25

maven 插件存储在哪里?也在本地存储库中?

是的。插件从远程存储库下载并存储在本地存储库中。因此,确切的最终位置将取决于插件的 groupId(核心插件最终位于 ~/.m2/repository/org/apache/maven/plugins 中,其中 ~/ 代表您的主目录,例如在 Windows Server 2016 中,它存储在该路径下 C:\Users\YourUserName\.m2)

如果您使用 Eclipse 构建应用程序会发生什么?

嗯……没什么特别的。

它将插件存储在 eclipse/plugins 文件夹中还是仍然存储在本地存储库中?

否,Maven(嵌入式或外部)使用全局或用户 元素中定义的位置rel="noreferrer">设置(默认为~/.m2/repository),除非您覆盖本地存储库 窗口 > 中的路径首选项>梅文>用户设置

Where are maven plugins stored? in the local repository as well?

Yes. Plugins are downloaded from a remote repository and stored in the local repository. The exact final location will thus depend on the groupId of the plugins (the core plugins end up in ~/.m2/repository/org/apache/maven/plugins where ~/ stands for your home directory for example in windows server 2016 it is stored under this path C:\Users\YourUserName\.m2)

what happens if you build your application with eclipse?

Hmm... Nothing special.

Does it store the plugins inside the eclipse/plugins folder or still in the local repository?

No, Maven (embedded or external) uses the location defined in the <localRepository> element of the global or user settings (which defaults to ~/.m2/repository), unless you overrode the Local Repository path in Window > Preferences > Maven > User Settings.

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