添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
< artifactId > parent </ artifactId > < version > 1.0.0 </ version > < relativePath > ../parent/pom.xml </ relativePath > </ parent > < artifactId > child </ artifactId > < dependencies > < dependency > < groupId > com.example </ groupId > < artifactId > dependency </ artifactId > < version > 1.0.0 </ version > < exclusions > < exclusion > < groupId > com.example </ groupId > < artifactId > excluded-dependency </ artifactId > </ exclusion > </ exclusions > </ dependency > </ dependencies > </ project >

在上面的示例中, 标签指定了父模块的坐标和相对路径。然后,在 标签中使用 标签排除了不需要的依赖项。请确保在 标签中使用正确的groupId和artifactId来排除相应的依赖项。

这样,当您构建子模块时,父模块的依赖不会被传递给子模块。