1、下载云效仓库的settings.xml文件
2、配置使用settings.xml
3、上传jar包远程仓库
在pom.xml中配置
<distributionManagement>
<repository>
<id>rdc-releases</id>
<url>https://packages.aliyun.com/maven/repository/2007025-release-UaGsnG/</url>
</repository>
<snapshotRepository>
<id>rdc-snapshots</id>
<url>https://packages.aliyun.com/maven/repository/2007025-snapshot-E4NTBC/</url>
</snapshotRepository>
</distributionManagement>
mvn deploy的时候会自动根据版本 推送到不同的仓库中,如果版本带有SNAPSHOT则会推送到snapshotRepository
这个仓库中,