5

我有一个私有 Nexus,其存储库通过身份验证保护。

拉取库就像一个魅力,但如果我想使用其中存储的原型之一,我总是需要在原型目录的 URL 中写入纯文本用户名和密码,如下所示:

mvn archetype:generate -DarchetypeCatalog=http://username:password@maven.mycompany.com/nexus/content/repositories/myrepo/archetype-catalog.xml

我阅读了http://maven.apache.org/archetype/maven-archetype-plugin/faq.html#authentication并用我从那一点点帮助中了解到的内容更新了我的 settings.xml:

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
                      http://maven.apache.org/xsd/settings-1.0.0.xsd">

  <servers>
    <server>
      <id>myrepo</id>
      <username>username</username>
      <password>{HASHED_PASSWORD}</password>
    </server>
    <server>
      <id>pretty-archetype-unicorn-repo</id>
      <username>username</username>
      <password>{HASHED_PASSWORD}</password>
    </server>
  </servers>

  <profiles>
   <profile>
     <id>someid</id>
     <repositories>
       <repository>
         <id>myrepo</id>
         <name>My Repo</name>
         <url>http://maven.mycompany.com/nexus/content/repositories/myrepo/</url>
       </repository>
     </repositories>
   </profile>
  </profiles>

  <activeProfiles>
    <activeProfile>someid</activeProfile>
  </activeProfiles>

</settings>

不用说,它不起作用,当我尝试时:

mvn archetype:generate -DarchetypeCatalog=http://maven.mycompany.com/nexus/content/repositories/myrepo/archetype-catalog.xml

我得到同样的旧:

[WARNING] Error reading archetype catalog http://maven.mycompany.com/nexus/content/repositories/myrepo/archetype-catalog.xml
org.apache.maven.wagon.authorization.AuthorizationException: Access denied to: http://maven.mycompany.com/nexus/content/repositories/myrepo/archetype-catalog.xml

任何提示,或带有工作示例的更好文档?

4

3 回答 3

8

如果您不至少指定-DarchetypeArtifactId. 根据您链接的官方文档:

The server id used to download the artifact is [archetypeArtifactId]-repo

因此,如果目录受密码保护(并且您不愿意在 shell 历史记录中公开用户名/密码),则无法仅浏览目录。

同时,您可以继续投票给ARCHETYPE-204。多年来他们已经有一个补丁可用,他们可能只需要一点推动。

更新

查看 maven 原型项目的源代码,看起来settings.xml可能适合您的以下代码段:

<servers>
    <server>
      <id>archetype</id>
      <username>${your username}</username>
      <password>${your password}</password>
    </server>
</servers>

在获取远程目录archetype时构建对象时有一个默认 ID 。Repository我不认为这是处理这种情况的官方方式,而且它有点脏 IMO。但它可能仍然对你有用:-)

此外,您应该能够设置配置文件以重用archetype不同服务器的 ID。

于 2013-02-13T09:47:55.997 回答
1

看起来这是一个已知问题,您不能使用受保护存储库中的原型。见https://issues.apache.org/jira/browse/ARCHETYPE-204

可以通过执行以下操作来解决此问题:

mvn archetype:generate -DarchetypeCatalog=https://username:password@maven.mycompany.com/nexus/content/repositories/myrepo/
于 2014-02-13T03:29:34.450 回答
1

我认为它应该在您的 settings.xml 中

<servers>
    <server>
      <id>myrepo</id>
      <username>${your username}</username>
      <password>${your password}</password>
    </server>
</servers>

您需要<server>为每个受密码保护的存储库添加。

于 2013-07-17T17:11:46.620 回答