当有父pom时,正确地将工件部署到Nexus可以按照以下步骤进行:
<servers>
<server>
<id>nexus</id>
<username>your-username</username>
<password>your-password</password>
</server>
</servers>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.0.0-M1</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
mvn deploy
Maven会根据配置的Nexus服务器信息,将工件上传到Nexus的仓库中。
注意事项:
推荐的腾讯云相关产品:腾讯云私有仓库(Tencent Cloud Private Registry,TCR)。TCR是腾讯云提供的容器镜像仓库服务,支持存储、管理和分发Docker镜像。您可以使用TCR作为Nexus的替代方案,实现工件的部署和管理。了解更多信息,请访问腾讯云私有仓库官方文档:腾讯云私有仓库。
领取专属 10元无门槛券
手把手带您无忧上云