阿里云maven仓库的使用详解以及报错解决方法
仓库介绍阿里云Maven中央仓库为 阿里云云效 提供的公共代理仓库,帮助研发职员进步研发生产效率,使用阿里云Maven中央仓库作为下载源,速率更快更稳定。阿里云云效是企业级一站式 DevOps 平台,覆盖产物从需求到运营的研发全生命周期,此中云效也提供了免费、可靠的Maven私有仓库 Packages,欢迎您体验使用。
阿里云仓库的使用
进入阿里云仓库,未注册的需要注册后才能使用;
https://devops.aliyun.com/workbench
在云效中选择制品仓库
https://img-blog.csdnimg.cn/3178b9483c9940c99d601d00db51f8b7.png
https://img-blog.csdnimg.cn/d89f7f39e1584f2baa257004f4e1c0f6.png
选择生产库进入,点击仓库指南检察官方给的推送以及拉取方式;
https://img-blog.csdnimg.cn/bd6b68a63e54480893c8b9062b7209a4.png
推送
这里以第二种推送方法为例,下载setting.xml文件并粘贴到maven路径的conf文件下;
https://img-blog.csdnimg.cn/5596c8b198fd49cd83addb57f66e7586.png
https://img-blog.csdnimg.cn/3f2551760cb54014ad44902172bbd3b7.png
setting中设置maven
https://img-blog.csdnimg.cn/c27139123a4e4fceaf33b6237fb63b0c.png
https://img-blog.csdnimg.cn/9b536714e7814276bb05f8509783f81f.png
pom.xml文件中添加,url可以根据前面下载的setting.xml中的地址来复制;
<distributionManagement>
<repository>
<id>rdc-releases</id>
<name>rdc-releases</name>
<url>https://packages.aliyun.com/maven/repository/2294427-release-omAWMW/</url>
</repository>
<snapshotRepository>
<id>rdc-snapshots</id>
<name>rdc-snapshots</name>
<url>https://packages.aliyun.com/maven/repository/2294427-snapshot-VD6Bpi/</url>
</snapshotRepository>
</distributionManagement> 在idea控制台中实验以下命令进行发布:
mvn cleandeploy -DskipTests https://img-blog.csdnimg.cn/f0f908723d1c49c9a4d5f93f1948e8f1.png
云效默认为你提供了两个仓库:
Maven Release 库用于存储功能趋于稳定、当前更新制止,可以用于发行的版本。
Maven Snapshot 库用于存储不稳定、尚处于开发中的版本,即快照版本。
您的制品文件具体推送到哪个库,根据您项目目录的pom.xml文件中<version></version>字段中是否设置了-SNAPSHOT。
推送至 Release 库pom.xml示例:
<groupId>com.example.xxxx</groupId>
<artifactId>xxxx</artifactId>
<version>1.0</version> 推送至 Snapshot 库pom.xml示例:
<groupId>com.example.xxxx</groupId>
<artifactId>xxxx</artifactId>
<version>1.0-SNAPSHOT</version> 拉取:
在阿里云maven包列表中复制依赖到pom.xml中;
https://img-blog.csdnimg.cn/eb775f6ed8dd4033903f678ccc4dcd4b.png
控制台中实验以下命令:
mvn install 上传时的常见报错
1、若发布时出现报错:
Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:
2.7:deploy (default-deploy) on project testalibab: Deployment failed: repository
element was not specified in the POM inside distributionManagement element or
in -DaltDeploymentRepository=id::layout::url parameter ->
原因是因为pom.xml中缺少distributionManagement标签设置
<distributionManagement>
<repository>
<id>rdc-releases</id>
<name>rdc-releases</name>
<url>https://packages.aliyun.com/maven/repository/2294427-release-omAWMW/</url>
</repository>
<snapshotRepository>
<id>rdc-snapshots</id>
<name>rdc-snapshots</name>
<url>https://packages.aliyun.com/maven/repository/2294427-snapshot-VD6Bpi/</url>
</snapshotRepository>
</distributionManagement> 2、若发布时出现报错:
Not authorized , ReasonPhrase:Unauthorized
由于maven默认的settings file路径是在C盘。所以将前面下载的setting.xml文件粘贴到以下路径,即可解决;
https://img-blog.csdnimg.cn/7aa6b2325bd34265a9dfa5b1360d78d5.png
再次进行发布就可以发布成功了;
3、若发布时出现报错:
不再支持源选项 5。请使用 7 或更高版本。 则在pom.xml中添加以下标签即可解决,版本可根据本身的jdk进行选择;
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页:
[1]