使用 Spring Boot BOM 管理 Maven 插件版本

Posted

技术标签:

【中文标题】使用 Spring Boot BOM 管理 Maven 插件版本【英文标题】:Managing Maven plugin versions with Spring Boot BOM 【发布时间】:2021-08-02 13:35:58 【问题描述】:

我有一个用于 Spring Boot 项目的 Maven POM。 POM 导入 Spring Boot BOM。现在我想自定义一个 Maven 插件的配置,比如mvn-compiler-plugin。我想使用spring-boot-dependencies BOM 指定的插件版本maven-compiler-plugin.version

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>ch.ge.mygroup</groupId>
    <artifactId>myartifact</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <packaging>war</packaging>

    <properties>
        <spring-boot.version>2.4.2</spring-boot.version>
    </properties>

    <dependencyManagement>
        <dependencies>
            <!-- Spring Boot BOM -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-dependencies</artifactId>
                <version>$spring-boot.version</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>$maven-compiler-plugin.version</version>
                <configuration>
                    <!-- some particular config here -->
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

但这确实有效:我想出了一个 Maven 错误:

[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[ERROR] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin must be a valid version but is '$maven-compiler-plugin.version'. @ line 31, column 26

所以我必须明确指定 Maven 插件的版本,这是我想要避免的。

总结:

使用

<plugin>
  <artifactId>maven-compiler-plugin</artifactId>
  <version>$maven-compiler-plugin.version</version>
  <configuration>
    <!-- some particular config here -->
  </configuration>
</plugin>

产生一个 Maven 错误。

使用

<plugin>
  <artifactId>maven-compiler-plugin</artifactId>
  <version>3.8.1</version>
  <configuration>
    <!-- some particular config here -->
  </configuration>
</plugin>

有效,但阻止我使用 Spring Boot BOM 规定的版本 (3.8.1)。

使用

<plugin>
  <artifactId>maven-compiler-plugin</artifactId>
  <configuration>
    <!-- some particular config here -->
  </configuration>
</plugin>

有效,但使用的是旧版本 (3.1) 插件。

如何避免显式指定插件版本,而是隐式使用 Spring Boot BOM 中提供的插件版本?

【问题讨论】:

如果你通过 import (bom) 使用 spring boot parent,你必须自己管理所有插件版本... 【参考方案1】:

如果你想通过简单地更新属性来覆盖 Spring Boot 依赖,你必须指定父 POM 而不是importing:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>ch.ge.mygroup</groupId>
  <artifactId>myartifact</artifactId>
  <version>1.0.0-SNAPSHOT</version>
  <packaging>war</packaging>

  <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-dependencies</artifactId>
    <version>2.4.2</version>
    <relativePath/>
  </parent>

  <properties>
    <spring-boot.version>2.4.2</spring-boot.version>
    <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
  </properties>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>$maven-compiler-plugin.version</version>
        <configuration>
          <!-- some particular config here -->
        </configuration>
      </plugin>
    </plugins>
  </build>

</project>

【讨论】:

谢谢,但我想避免使用 Spring 作为 而不是将其作为 BOM 导入。这似乎是不可能的......

以上是关于使用 Spring Boot BOM 管理 Maven 插件版本的主要内容,如果未能解决你的问题,请参考以下文章

Gradle 5 JUnit BOM 和 Spring Boot 版本不正确

如何覆盖spring boot BOM的版本

什么是 Maven 依赖管理中的物料清单? [关闭]

找不到 io.projectreactor:reactor-bom:pom:Bismuth-M1

我的第一个spring boot程序(spring boot 学习笔记之二)

maven 打包异常