Idea 全局配置 Maven
在 Close Project 之后的初始界面 进入 Settings 配置,此时的配置就是全局配置
环境变量
MAVEN_HOME
Path
%MAVEN_HOME%\bin
conf.xml 配置
本地仓库:
1 | <localRepository>D:\aa\AppData\maven</localRepository> |
阿里云镜像:
1 | <mirror> |
依赖
<dependency>
依赖配置
1 | <project> |
嵌套依赖
<dependency>
可以引用另一个 模块/项目 ,形成嵌套依赖
范围 scope
1 | <dependency> |
各种取值:
scope取值 | 有效范围(compile, runtime, test) | 依赖传递 | 例子 |
---|---|---|---|
compile | all | 是 | spring-core |
provided | compile, test | 否 | servlet-api |
runtime | runtime, test | 是 | JDBC驱动 |
test | test | 否 | JUnit |
system | compile, test | 是 |