Maven 不使用 %USERPROFILE%\.m2\settings.xml 中指定的存储库
我已在 %USERPROFILE%.m2 目录中的 settings.xml 中指定了本地存储库。
<profile>
<id>mainprofile</id>
<repositories>
<repository>
<url>http://maven/maven2</url>
但是,当我进行 Maven 构建时,它会尝试从 Maven 中央存储库下载
[INFO] Scanning for projects...
Downloading: http://repo1.maven.org/maven2/com/tiger/t-parent/4.0.1/t-parent-4.0.1.pom
[INFO] Unable to find resource 'com.tiger:t-parent:pom:4.0.1' in repository central (http://repo1.maven.org/maven2)
为什么会发生这种情况?在我开枪自杀之前请帮忙。
更新:如果我在 maven 命令行中明确指定选项 --settings=%USERPROFILE%\.m2\settings.xml ,那么它就可以工作。为什么它没有像预期的那样自动使用它?
I have specified a local repository in my settings.xml in %USERPROFILE%.m2 directory.
<profile>
<id>mainprofile</id>
<repositories>
<repository>
<url>http://maven/maven2</url>
However when I do the maven build, it tries to download from the maven central repo
[INFO] Scanning for projects...
Downloading: http://repo1.maven.org/maven2/com/tiger/t-parent/4.0.1/t-parent-4.0.1.pom
[INFO] Unable to find resource 'com.tiger:t-parent:pom:4.0.1' in repository central (http://repo1.maven.org/maven2)
Why does this happen? Please help before I shoot myself.
Update: If I explicitly specify the option --settings=%USERPROFILE%\.m2\settings.xml in the maven command line, then it works. Why does it not use it automatically like it is supposed to?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
仔细检查您的 pom 是否没有不需要的存储库条目。这些可能看起来像:
像上面这样的东西咬了我一个。我永远不会忘记这一点。
carefully check your pom(s) if these are free of unwanted repository entries. These might look like:
Stuff like above bite me one. I'll never forget that.
使用 mvn -X 找出 Maven 从哪些不同位置读取 settings.xml。该开关激活调试日志记录。只需检查第一行即可。
您是否移动了 Windows 桌面的文件夹位置?在这种情况下,
user.home
可能无法解析为%USERPROFILE%\.m2
。有关详细信息,请查看我对 缺少 Maven .m2 文件夹 的回答。Use
mvn -X
to find out from which different locations Maven reads settings.xml. The switch activates debug logging. Just check the first lines.Have you moved the folder location of your Windows desktop? In that case,
user.home
might not resolve to%USERPROFILE%\.m2
. For details, have a look at my answer to Missing Maven .m2 folder.你设置镜子了吗?
来自 Sonatype 的 Nexus 书籍,更改了网址。
Did you set a mirror?
From Sonatype's Nexus book, altered url.