maven插件存储在哪里
Maven 插件存储在哪里?也在本地存储库中?如果您使用 eclipse 构建应用程序会发生什么?它将插件存储在 eclipse/plugins 文件夹中还是仍然存储在本地存储库中?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Maven 插件存储在哪里?也在本地存储库中?如果您使用 eclipse 构建应用程序会发生什么?它将插件存储在 eclipse/plugins 文件夹中还是仍然存储在本地存储库中?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
是的。插件从远程存储库下载并存储在本地存储库中。因此,确切的最终位置将取决于插件的 groupId(核心插件最终位于
~/.m2/repository/org/apache/maven/plugins
中,其中~/
代表您的主目录,例如在 Windows Server 2016 中,它存储在该路径下C:\Users\YourUserName\.m2
)嗯……没什么特别的。
否,Maven(嵌入式或外部)使用全局或用户 元素中定义的位置rel="noreferrer">设置 (默认为
~/.m2/repository
),除非您覆盖本地存储库 窗口 > 中的路径首选项>梅文>用户设置。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 pathC:\Users\YourUserName\.m2
)Hmm... Nothing special.
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.