IDEA配置Maven
我用的是IDEA默認(rèn)的maven,可以修改倉(cāng)庫(kù)位置,默認(rèn)在C盤,可以更改到D盤

如果使用的是自己下載的Maven以及鏡像下載問(wèn)題,需要使用下面的代碼,先存起來(lái)備用
<localRepository>D:\web老師軟件\tools\Maven\repository</localRepository>
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
<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>
標(biāo)簽: