Maven 不使用 %USERPROFILE%\.m2\settings.xml 中指定的存储库

发布于 2024-11-26 21:59:21 字数 706 浏览 2 评论 0原文

我已在 %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 技术交流群。

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

发布评论

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

评论(3

携君以终年 2024-12-03 21:59:21

仔细检查您的 pom 是否没有不需要的存储库条目。这些可能看起来像:

<repositories>
  <repository>
    <id>tiger</id>
    <name>tiger repository</name>
    <url>http://some.idiot.put.this.url.here/404.not.found</url>
  </repository>
</repositories>

像上面这样的东西咬了我一个。我永远不会忘记这一点。

carefully check your pom(s) if these are free of unwanted repository entries. These might look like:

<repositories>
  <repository>
    <id>tiger</id>
    <name>tiger repository</name>
    <url>http://some.idiot.put.this.url.here/404.not.found</url>
  </repository>
</repositories>

Stuff like above bite me one. I'll never forget that.

清风无影 2024-12-03 21:59:21

使用 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.

夏了南城 2024-12-03 21:59:21

你设置镜子了吗?

<mirrors>
   <mirror>
     <!--This sends everything else to /public -->
     <id>nexus</id>
     <mirrorOf>*</mirrorOf>
     <url>http://maven/maven2</url>
   </mirror>
</mirrors>

来自 Sonatype 的 Nexus 书籍,更改了网址。

Did you set a mirror?

<mirrors>
   <mirror>
     <!--This sends everything else to /public -->
     <id>nexus</id>
     <mirrorOf>*</mirrorOf>
     <url>http://maven/maven2</url>
   </mirror>
</mirrors>

From Sonatype's Nexus book, altered url.

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