maven通过命令行将test.jar部署到nexus

时间:2018-04-06 07:21:29

标签: maven nexus maven-deploy-plugin

我使用下面的命令将旧工件上传到新的连接,因为它们无法重建。

mvn deploy:deploy-file 
  --settings=~/.m2/settings_att_nexus.xml 
  -DgroupId=com.org 
  -Dsources=someone-3.3.1-SNAPSHOT-sources.jar 
  -Djavadoc=someone-3.3.1-SNAPSHOT-javadoc.jar 
  -Dtestjar=someone-3.3.1-SNAPSHOT-tests.jar
  -DpomFile=someone-3.3.1-SNAPSHOT.pom 
  -DartifactId=someone 
  -Dversion=3.3.1-SNAPSHOT 
  -DgeneratePom=false -Dpackaging=jar 
  -DrepositoryId=snapshots 
  -Durl=http://someurl:8076/nexus/content/repositories/snapshots 
  -Dfile=someone-3.3.1-SNAPSHOT.jar

所有必需的罐子都已成功上传,但是某人-3.3.1-SNAPSHOT-tests.jar 没有进入nexus,它作为参数传递给上面的命令,标签如下: / p>

-Dtestjar=someone-3.3.1-SNAPSHOT-tests.jar

有人可以一次性告诉maven部署到uplaod test.jar的正确标签是什么。

1 个答案:

答案 0 :(得分:4)

你的settings.xml有什么意义?你应该有这样的东西:

            [...]
            <repository>
                <id>Snapshot</id>
                <url>http://192.168.28.35/nexus/content/groups/public-snapshots</url>
                <snapshots>
                    <enabled>true</enabled>
                    <updatePolicy>always</updatePolicy>
                    <checksumPolicy>warn</checksumPolicy>
                </snapshots>
                <releases>
                    <enabled>false</enabled>
                </releases>
                <layout>default</layout>
            </repository>
            [...]

编辑:

正如我所看到的,部署插件中不存在“testjar”。你可以试试这个:

[...]
     -Dfiles=someone-3.3.1-SNAPSHOT-tests.jar
     -Dtypes=jar
     -Dclassifiers=tests
[...]