This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
## 依赖配置
1. 在pom.xml中,编写< dependencies > 标签
2. 在其中使用< dependency >引入坐标
3. 点击刷新,引入最新加入的坐标
## maven的三套生命周期
负责对所有maven项目构建进行抽象和统一
### claen
claen:移除上一次项目构建生成的文件
### default
compile:编译项目源代码
test:使用合适的单元测试框架进行测试
package:将项目编译后的文件打包
install:安装项目到本地仓库
### site
注意: 在同一套生命周期中运行后面的阶段时,前面的阶段都会运行