mvn release:perform 尝试将 sources.jar 两次放入 nexus
mvn release:perform tries to put sources.jar twice to nexus
mvn release perform 尝试将 sources.jar 两次放入 nexus。
首先,它将它与其他工件放在一起 (.war, javadoc.jar..).
然后它进行批量部署并尝试再次放置 sources.jar。知道发生了什么事吗?
[INFO] [INFO] Bulk deploying locally gathered artifacts from directory:
[INFO] [INFO] * Bulk deploying locally gathered snapshot artifacts to URL
maven-deploy-plugin 与 nexus-staging-maven-plugin 冲突。我不得不把
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
mvn release perform 尝试将 sources.jar 两次放入 nexus。
首先,它将它与其他工件放在一起 (.war, javadoc.jar..).
然后它进行批量部署并尝试再次放置 sources.jar。知道发生了什么事吗?
[INFO] [INFO] Bulk deploying locally gathered artifacts from directory:
[INFO] [INFO] * Bulk deploying locally gathered snapshot artifacts to URL
maven-deploy-plugin 与 nexus-staging-maven-plugin 冲突。我不得不把
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>