使用nexus-staging-maven-plugin将特定文件部署到nexus

时间:2018-09-06 16:33:20

标签: maven nexus

我的构建过程的一部分会创建一个包含所有依赖项的胖子。当我运行构建时,标准罐子都部署到了Nexus上,但胖罐子却没有部署。对于如何配置nexus-staging-maven-plugin来部署特定的工件(例如胖子罐),我一直没有成功。

在我们的插件定义中没什么有趣的:

<plugin>
    <groupId>org.sonatype.plugins</groupId>
    <artifactId>nexus-staging-maven-plugin</artifactId>
    <version>1.6.8</version>
    <extensions>true</extensions>
    <configuration>
        <serverId>nexus</serverId>
        <nexusUrl>https://nexus.domain.org/nexus/</nexusUrl>
        <stagingProfileId>xxxxxxxxxxx</stagingProfileId>
    </configuration>
</plugin>

谢谢!

0 个答案:

没有答案