您的位置:首页 > 其它

Intellij IDEA Maven 下载慢,需要这样设置配置文件。

2018-01-14 22:35 393 查看
在官网,下载完成安装完毕后,需要在F:\apache-maven-3.5.2\conf\settings文件中添加一下设置

右键编辑:

<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>


第二个地方:

<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>


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  maven 配置文件 SSM
相关文章推荐