maven手动下载依赖
1.进入中央仓库搜索需要的包
2.复制url 根据模板拼接命令
3.win+r cmd 在命令面板执行命令
4.去本地仓库查看是否有依赖文件
中央仓库地址:
https://mvnrepository.com/
cmd命令模板
mvn dependency:get -DremoteRepositories=url -DgroupId=groupId
-DartifactId=artifactId -Dversion=version
需要下载的url
https://mvnrepository.com/artifact/org.codehaus.mojo/wagon-maven-plugin/1.0
拼接为
mvn dependency:get
-DremoteRepositories=https://mvnrepository.com/artifact/org.codehaus.mojo/wagon-maven-plugin
-DgroupId=org.codehaus.mojo -DartifactId=wagon-maven-plugin -Dversion=1.0
下载好的jar包