Maven 安装流程
2.下载完成,保存本地
3.配置maven的环境变量
4.Maven配置完成添加到Path路径内
5.Path内引入Maven的配置地址,这里要注意是追踪到 bin 目录!
6.检测是否安装Maven
7.安装成功后下载配置信息
IDEA - Maven环境配置
IDEA - Maven - JDK环境配置
通过 pom.xml 设置Maven编译环境的JDK版本
方式一:pom.xml - Maven Properties
<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>
1
2
3
4
5
方式二:pom.xml - 编译器(maven-compiler-plugin)插件
<build>
<defaultGoal>compile</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<compilerArgument>-Xlint:all</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation></configuration>
</plugin>
</plugins>
</build>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
通过 Settings 设置Maven的导入环境、运行环境的JDK版本
设置 Maven - importing(设置导入时的JDK版本) ~
设置 Maven - Runner JRE版本(可以跟着之前已设置过的Project JDK) ~
IDEA - 导入、使用Maven
idea的引用Maven使用方式
- 方式一
方式二