maven配置IDEA过程以及vscode插件安装

首先让maven使用阿里云:
找到maven安装目录下 conf 中的 settings.xml 文件
打开并查询到“mirrors”将其使用阿里云的配置替换

   
      nexus-aliyun
      central
      Nexus aliyun
      http://maven.aliyun.com/nexus/content/groups/public
   

 

其次让maven使用JDK1.8编译项目:
找到maven安装目录下 conf 中的 settings.xml 文件
打开并查询 “profiles”将其使用JDK1.8编译
   
      jdk-1.8
     
        true
        1.8
     

     
         1.8
         1.8
         1.8
     

   

配置IDEA中maven:
打开IDEA,找到 setting-->build,execution....-->Build Tools-->Maven
设置Maven home directory:E:/Program Files/apache/maven-3.6.3
User setting file:E:\Program Files\apache\maven-3.6.3\conf\settings.xml
Local repository:E:\Program Files\apache\maven-3.6.3\repository    配置maven仓库

在IDEA中plugins下载对应插件:lombok(简化javabin的开发);mybatisx(快速定位xml文件)

安装vscode软件(开发前段项目):
安装对应插件:auto close tag;auto rename tag;chines simplified;eslint;HTML CSS Support;
JavaScript (ES6) code snippets;Live Server;open in browser;Vetur

你可能感兴趣的:(maven配置IDEA过程以及vscode插件安装)