1.配置IDE构建的Maven存放目录(解压目录)
2.配置IDE的User setting file路径,修改setting配置文件
配置本地仓库
1 <!–自定义本地仓库路径–>
2 <localRepository>E:\JAVA\Maven</localRepository>
配置mirrors远程镜像(一般配置一到两个镜像)
1 <mirrors> 2 <!-- mirror 3 | Specifies a repository mirror site to use instead of a given repository. The repository that 4 | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used 5 | for inheritance and direct lookup purposes, and must be unique across the set of mirrors. 6 | 7 <mirror> 8 <id>mirrorId</id> 9 <mirrorOf>repositoryId</mirrorOf> 10 <name>Human Readable Name for this Mirror.</name> 11 <url>http://my.repository.com/repo/path</url> 12 </mirror> 13 --> 14 <mirror> 15 <id>alimaven</id> 16 <mirrorOf>central</mirrorOf> 17 <name>aliyun maven</name> 18 <url>http://maven.aliyun.com/nexus/content/repositories/central/</url> 19 </mirror> 20 <mirror> 21 <id>jboss-public-repository-group</id> 22 <mirrorOf>central</mirrorOf> 23 <name>JBoss Public Repository Group</name> 24 <url>http://repository.jboss.org/nexus/content/groups/public</url> 25 </mirror> 26 </mirrors>
配置profiles构建
1 <profile> 2 <id>jdk18</id> 3 <activation> 4 <jdk>1.8</jdk> 5 <activeByDefault>true</activeByDefault> 6 </activation> 7 <properties> 8 <maven.compiler.source>1.8</maven.compiler.source> 9 <maven.compiler.target>1.8</maven.compiler.target> 10 <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion> 11 </properties> 12 </profile>
1 <mirror> 2 <id>alimaven</id> 3 <name>aliyun maven</name> 4 <url>http://maven.aliyun.com/nexus/content/groups/public/</url> 5 <mirrorOf>central</mirrorOf> 6 </mirror> 7 <mirror> 8 <id>alimaven</id> 9 <mirrorOf>central</mirrorOf> 10 <name>aliyun maven</name> 11 <url>http://maven.aliyun.com/nexus/content/repositories/central/</url> 12 </mirror> 13 14 <mirror> 15 <id>ibiblio</id> 16 <mirrorOf>central</mirrorOf> 17 <name>Human Readable Name for this Mirror.</name> 18 <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url> 19 </mirror> 20 <mirror> 21 <id>jboss-public-repositor