maven词汇
date
Jul 27, 2023
tags
技术&产品
type
Post
status
Published
Last edited time
Dec 2, 2023 05:32 AM
scope 范围
compile:
provided:
runtime:
test:
system:
packaging
pom:
jar:
war
dependencyManagement
exclusion
properties
dependencies
使用记录
- 定义了 parent, 可以直接使用 parent(pom.xml) 中引入的包, 但是如果要使用 parent 中的类或者其他模块中的类, 则需要在自己的pom中引入需要的模块
- 为了统一依赖的版本号, 版本号统一在parent中定义, 如果所有 model 需要, 则在parent中引入, 如果只有其中几个model需要, 则在自己的pom中引入, 但是版本号统一使用parent定义