将jar包导入本地仓库&&配置阿里仓库
1. 在cmd窗口中首先将路径跳转到D:\java:
2. 执行:mvn install:install-file -DgroupId=cn.danielw -DartifactId=spring-jdbc-template -Dversion=0.2.1 -Dpackaging=jar -Dfile=spring-jdbc-template-0.2.1.jar
即:指定
-DgroupId=cn.danielw
-DartifactId=spring-jdbc-template
-Dversion=0.2.1
-Dpackaging=jar -Dfile=spring-jdbc-template-0.2.1.jar
- 配置阿里云中央仓库(在maven的settings.xml配置文件中键入:)
<mirror><id>nexus-aliyun</id> <mirrorOf>*</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public</url> </mirror>
本文链接:https://my.lmcjl.com/post/3931.html
展开阅读全文
4 评论