当前位置:   article > 正文

Maven中如何在中央仓库中下载jar包到本地仓库_respository包下载

respository包下载

1、先配置本地仓库地址

先进入下载的Maven地址中,用记事本方式打开settings.xml;在这里插入图片描述用查找方式找到localRepository,并添加上本地仓库的地址。
在这里插入图片描述<localRepository>D:\Maven\Respository</localRepository>

2、配置阿里云镜像仓库。(配置阿里云的远程仓库)

依然是settings.xml文件,添加这些信息到对应位置。即在mirrors标签下添加。
在这里插入图片描述

<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf> 
</mirror>
  </mirrors>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

保存。
这个时候已经成功配置好远程仓库和本地仓库了。

3、从中央仓库中下载jar包到本地仓库中。(重点)

本人踩坑以为jar包都是自己下载到本地仓库中的,这是错误的,Maven有自己的约定俗成的方法下载jar包到本地仓库中。
中央仓库地址:
https://mvnrepository.com/
假设要下载Spring-Context的jar包,我们搜索:spring Context
在这里插入图片描述使用Win+R,打开cmd(此处用window系统做示范)
命令模板

mvn dependency:get -DremoteRepositories=url -DgroupId=groupId -DartifactId=artifactId -Dversion=version
  • 1

如果用Spring-Context这里做示范,则输入以下命令:

mvn dependency:get -DremoteRepositories=https://mvnrepository.com/artifact/org.springframework/spring-context -DgroupId=org.springframework -DartifactId=spring-context -Dversion=5.2.8.RELEASE
  • 1

回车,等待下载完成
进入到本地仓库的地址,我们就会发现下载完成的jar包。在这里插入图片描述在这里插入图片描述大功告成,接下来就可以直接进入pom.xml中用依赖导包了。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/87786
推荐阅读
相关标签
  

闽ICP备14008679号