maven 安裝配置
阿新 • • 發佈:2020-10-20
官網:http://maven.apache.org/download.cgi
環境變數配置
maven_home maven路徑
path %MAVEN_HOME%\bin
使用阿里雲映象
<mirror> <id>nexus-aliyun</id> <mirrorOf>central</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public></url></mirror>
jdk1.8編譯專案
<profile> <id>jdk18</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>
本地倉庫位置
<settings> <localRepository>D:/apache-maven-3.6.3/repo</localRepository> </settings>