首页 文章

Maven:尝试使用settings.xml文件中的凭据进行部署

提问于
浏览
32

这似乎在上周工作,现在它没有 .

  • 我们使用Artifactory作为我们的Maven存储库 .

  • 我正在使用 deploy:deploy-file 目标部署jar和pom

  • 我们的Artifactory存储库需要部署身份验证 .

我可以通过在命令行上将我的凭据嵌入服务器URL来部署到存储库:

$ mvn deploy:deploy-file \
     -Durl=http://deployer:swordfish@repo.veggiecorp.com/artifactory/ext-release-local \
     -Dfile=crypto.jar \
     -DpomFile=pom.xml \
     -Did=VeggieCorp
  yadda...yadda...yadda...
  [INFO] ------------------------------------------------------------------------
  [INFO] BUILD SUCCESS
  [INFO] ------------------------------------------------------------------------
  [INFO] Total time: 0.962s
  [INFO] Finished at: Mon Aug 20 10:06:04 CDT 2012
  [INFO] Final Memory: 4M/118M
  [INFO] ------------------------------------------------------------------------

但是,整个部署会被记录,并且我的凭据将在日志中可见 . 因此,我希望能够在命令行上没有我的凭据进行部署 . 为此,我有一个 $HOME/.m2/settings.xml 文件:

<settings>
    <proxies>
        <proxy>
            <active>true</active>
            <protocol>http</protocol>
            <host>proxy.veggiecorp.com</host>
            <port>3128</port>
            <nonProxyHosts>*.veggiecorp.com</nonProxyHosts>
        </proxy>
    </proxies>
    <servers>
        <server>
            <id>VeggieCorp</id>
            <username>deployer</username>
            <password>swordfish</password>
        </server>
    </servers>
    <profiles>
        <profile>
            <id>VeggieCorp</id>
            <activation>
                 <activeByDefault>true</activeByDefault>
            </activation>
            <repositories>
                <repository>
                    <id>VeggieCorp</id>
                    <name>VeggieCorp's Maven Repository</name>
                    <releases>
                        <enabled>true</enabled>
                        <updatePolicy>always</updatePolicy>
                        <checksumPolicy>warn</checksumPolicy>
                    </releases>
                    <snapshots>
                        <enabled>false</enabled>
                        <updatePolicy>always</updatePolicy>
                        <checksumPolicy>warn</checksumPolicy>
                    </snapshots>
                    <url>http://repo.veggiecorp.com/artifactory/ext-release-local</url>
                    <layout>default</layout>
                </repository>
            </repositories>
        </profile>
    </profiles>
    <activeProfiles>
        <activeProfile>VeggieCorp</activeProfile>
    </activeProfiles>
</settings>

现在,我将再次尝试部署,但不在URL中输入用户名和密码:

$ mvn deploy:deploy-file \
     -Durl=http://repo.veggiecorp.com/artifactory/ext-release-local \
     -Dfile=crypto.jar \
     -DpomFile=pom.xml \
     -Did=VeggieCorp
yadda...yadda...yadda
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.751s
[INFO] Finished at: Mon Aug 20 10:17:15 CDT 2012
[INFO] Final Memory: 4M/119M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy-  file (default-cli) on project crypto:
 Failed to deploy artifacts: Could not transfer artifact  
    com.veggiecorp:crypto:jar:2.0.0 from/to remote-repository 
    (http://mvn.veggiecorp.com/artifactory/ext-release-local):
    Failed to transfer file:
    http://mvn.veggiecorp.com/artifactory/ext-release-local/com/veggiecorp/crypto/2.0.0/crypto-2.0.0.jar.
    Return code is: 401, ReasonPhrase:Unauthorized. -> [Help 1]

(我已经重新格式化输出以便更容易看到 . 我收到401“未经授权”的错误)

那么,我做错了什么?为什么我不能使用我的 .settings.xml 文件来完成我的凭据?代理部分可以工作,因为它可以从主Maven存储库下载所需的插件 .

2 回答

  • 46

    您需要提供 repositoryId=VeggieCorp (而不是 id )属性,以便maven知道它必须从哪个 <server> 配置读取凭据 .

    $ mvn deploy:deploy-file \
     -Durl=http://repo.veggiecorp.com/artifactory/ext-release-local \
     -Dfile=crypto.jar \
     -DpomFile=pom.xml \
     -DrepositoryId=VeggieCorp
    

    http://maven.apache.org/plugins/maven-deploy-plugin/deploy-file-mojo.html

  • 4

    您还可以在distributionManagement中指定快照存储库ID

    <distributionManagement>
    <repository>
      <id>releases</id>
      <url>${env.MAVEN_RELEASE_REPOSITORY_URL}</url>
    </repository>
    <snapshotRepository>
      <id>snapshots</id>
      <url>${env.MAVEN_SNAPSHOT_REPOSITORY_URL}</url>
    </snapshotRepository>
    </distributionManagement>
    

    这里的ids应与 servers 中的ids相匹配

相关问题