1.建立一个空项目
next 然后会出现这个界面
给项目取个名字
点击finish会出现这个界面(点击加号 new module)
新建一个空白标准maven project(不要选择Create from archetype选项然后next)
736876-20170605221705528-1675590408.png
填写项目坐标
填写maven项目名并finish
重复之前步骤new module(选择Create from archetype 找到quickstart)
填写项目坐标(上面两个三点全部选为none)
next 后检查自己路径是否正确
finish
配置xml
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<spring.version>5.0.10.RELEASE</spring.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>