(三)Maven学习之坐标与仓库
<dependency> <groupId>XXXX</groupId> //坐标 <artifactId>xxxx</artifactId>//坐标 <version>xxxxx</version>//版本号 </dependency>
仓库
本地仓库和远程仓库
镜像仓库
setting.xml修改
<mirrors> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> <mirror> <id>CN</id> <name>UK Central</name> <url>http://uk.maven.org/maven2/</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors>
更改仓库默认位置
<localRepository> F:/mavenlocal</localRepository>
代码都是乱鸠写的