11

我的 ~/.m2/settings.xml 中有这个:

<servers>
    <server>
        <username>deployment</username>
        <password>xxxxxx</password>
        <id>central</id>
    </server>
    <server>
        <username>deployment</username>
        <password>xxxxxx</password>
        <id>snapshots</id>
    </server>
</servers>

这在我的 POM 中:

<distributionManagement>
  <repository>
      <id>central</id>
      <name>libs-release-local</name>
      <url>http://repo.example.com:8081/nexus/content/repositories/libs-release-local</url>
  </repository>
  <snapshotRepository>
      <id>snapshots</id>
      <name>libs-local</name>
      <url>http://repo.example.com:8081/nexus/content/repositories/libs-local</url>
  </snapshotRepository>
</distributionManagement>

我面临的问题是没有部署工件,并且关系日志显示用于身份验证的用户名是“匿名的”。这就是它失败的原因。为什么 maven 不选择 settings.xml 中指定的用户名/密码,我做错了什么?

此外,我尝试使用 -X 运行 maven,并且调试日志说它正在读取正确的设置文件:

[DEBUG] Reading global settings from /home/praddy/apache-maven-3.0.5/conf/settings.xml
[DEBUG] Reading user settings from /home/praddy/.m2/settings.xml
[DEBUG] Using local repository at /home/praddy/.m2/repository
4

2 回答 2

11

如果您在 settings.xml 中配置镜像,则必须在 server 元素中使用镜像的 id。

<servers>
    <server>
        <id>MIRROR-ID</id>
        <username>...</username>
        <password>...</password>
    </server>
</servers>

...

<mirrors>
    <mirror>
        <id>MIRROR-ID</id>
        <name>...</name>
        <url>...</url>
        <mirrorOf>*</mirrorOf>
    </mirror>
</mirrors>
于 2016-03-13T16:19:55.370 回答
3

如果 repo 受 BasicAuth 保护,您可以尝试一下:

将此添加到您的settings.xml

<servers>
    <server>
        <!-- Link this id here to the repo ID -->
        <id>central</id>
        <configuration>
            <httpHeaders>
                <property>
                    <name>Authorization</name>
                    <value>Basic ZGVwbG95bWVudDp4eHh4eHg=</value>
                </property>
            </httpHeaders>
        </configuration>
    </server>
</servers>

您可以通过以下方式获得value零件:

curl -v --user deployment:xxxxxx http://repo.example.com:8081/nexus/content/repositories/libs-release-local 2>&1 | grep Authorization

这应该导致输出类似于:

> Authorization: Basic ZGVwbG95bWVudDp4eHh4eHg=
于 2014-03-25T18:18:52.203 回答