1.配置本地仓库
修改conf/setting.xml
中53行的
<localRepository>D:\develop\mvn_resp</localRepository>
2.配置阿里云私服
修改conf/setting.xml
中146行的
<mirror> <id>nexus-aliyun</id> <mirrorOf>*</mirrorOf> <url>http://maven.aliyun.com/nexus/content/groups/public</url> </mirror>
3.更改默认JDK版本
Maven默认使用的是JDK1.5,修改JDK版本,可以在187行的
<profile> <id>jdk-1.8</id> <activation> <activeByDefault>true</activeByDefault> <jdk>1.8</jdk> </activation> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion> </properties> </profile>
groupId
artifactId
version