如何在执行插件时忽略聚合器POM中的模块

问题描述 投票:0回答:1

我需要在聚合器POM上执行一个自定义插件,该插件应检出子模块。由于子模块文件夹(因此POM)尚不存在,所以我总是会收到类似以下错误:

The project ... has 1 error
[ERROR]     Child module ... of parentproject\pom.xml does not exist

执行插件时是否可以忽略模块?

maven pom.xml parent-pom
1个回答
0
投票

@Mojo中,您可以添加条目aggregator = true,以便该插件仅在父POM上运行,而不在模块上运行。

© www.soinside.com 2019 - 2024. All rights reserved.