是否可以不在父pom中指定pluginManagement?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了是否可以不在父pom中指定pluginManagement?相关的知识,希望对你有一定的参考价值。

我正在尝试为多模块项目设置Maven插件管理。我想使用没有继承的pluginManagement部分(指定不在父pom中的插件版本)。我的项目结构如下所示

base_project
   -- pom.xml
   -- project-bom
        -- pom.xml
   -- project-a
        -- pom.xml

在根pom.xml中,我只有两个模块:

<modules>
    <module>project-bom</module>
    <module>project-a</module>
</modules>

在project-bom pom.xml中,我指定了dependencyManagementpluginManagement部分以及要使用的依赖项和插件版本:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.some</groupId>
            <artifactId>dependency</artifactId>
            <version>1.0.0</version>
        </dependency>
    </dependencies>
</dependencyManagement>

<build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.some</groupId>
                <artifactId>plugin</artifactId>
                <version>1.0.0</version>
            </plugin>
        </plugins>
    </pluginManagement>
</build>

在project-a pom.xml中,我导入project-bom pom并使用依赖项和插件:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>com.project</groupId>
            <artifactId>project-bom</artifactId>
            <version>1.0-SNAPSHOT</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

<dependencies>
    <dependency>
        <groupId>org.some</groupId>
        <artifactId>dependency</artifactId>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.some</groupId>
            <artifactId>plugin</artifactId>
        </plugin>
    </plugins>
</build>

我能够使用project-bom中指定的依赖项版本,但不适用于插件。它给了我以下警告:

[WARNING] Some problems were encountered while building the effective model for <...>
[WARNING] 'build.plugins.plugin.version' for <org.some:plugin> is missing. 

是否可以不在父pom中指定pluginManagement并将其导入?

答案

目前无法实现。有一个open ticket in the Maven项目添加此功能。

以上是关于是否可以不在父pom中指定pluginManagement?的主要内容,如果未能解决你的问题,请参考以下文章

我必须在 Android Manifest 中指定父活动名称吗?

在 pom.xml 中指定目标

发送密钥而不在 python selenium webdriver 中指定元素

如何让 readyapi(以前称为 soapui)尊重我在 pom.xml 中指定的值?

如何在 Spring/Spring Boot pom.xml 中指定 Java 版本?

如何在 pom.xml 文件中指定 Java 编译器版本?