码迷,mamicode.com
首页 > 其他好文 > 详细

idea与maven整合

时间:2018-11-17 16:09:51      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:public   profile   分享图片   image   aliyun   --   oca   tor   nexus   

1.官网下载

apache-maven-3.3.3

2.解压安装后配置conf-settings文件

a. <localRepository>E:\JAVA\maven_cangku</localRepository>-设置自己的maven仓库

b. <mirror>
     <id>nexus-aliyun</id>
     <mirrorOf>central</mirrorOf>
     <name>Nexus aliyun</name>
     <url>http://maven.aliyun.com/nexus/content/groups/public</url>
     </mirror>--设置远程下载地址-阿里云下载速度快

c. <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>
  </profiles>--设置jdk版本

3.打开idea开始界面,进去setting配置全局变量,

技术分享图片

4.配置完重启idea

 

idea与maven整合

标签:public   profile   分享图片   image   aliyun   --   oca   tor   nexus   

原文地址:https://www.cnblogs.com/yunshao/p/9973910.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!