gpt4 book ai didi

maven - 用 maven-deploy-plugin 替换 nexus staging maven 插件

转载 作者:行者123 更新时间:2023-12-03 19:16:13 29 4
gpt4 key购买 nike

我们的项目从我们无法控制的父 pom 继承了 nexus staging maven 插件。我在我的根 pom 中有这个配置来禁用 nexus staging maven 插件,这个配置似乎禁用了默认部署执行。

<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<executions>
<execution>
<id>default-deploy</id>
<phase>none</phase>
</execution>
</executions>
<configuration>
<serverId>nexus</serverId>
<nexusUrl>url</nexusUrl>
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
</configuration>
</plugin>

我在我的根 pom 中定义了 maven deploy 插件,但是 maven-deploy 插件似乎没有启动
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>

我不知道如何用 maven deploy 插件替换继承的 nexus staging maven 插件。任何帮助深表感谢

最佳答案

您可以通过插件 groupID:artefactID 限定目标:

mvn org.apache.maven.plugins:maven-deploy-plugin:deploy

关于maven - 用 maven-deploy-plugin 替换 nexus staging maven 插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50509571/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com