build.plugins.plugin.version警告问题

1,372 阅读1分钟

使用 spring-boot-maven-plugin插件打包时,会出现以下Warning

'build.plugins.plugin.version' for org.springframework.boot:spring-boot-maven-plugin is missing. @ line 107, column 17
It is highly recommended to fix these problems because they threaten the stability of your build.
For this reason, future Maven versions might no longer support building such malformed projects.

这个主要是因为spring-boot-maven-plugin没有指定version版本号导致的。这个版本号一般同springboot构建版本相同。 所以只需在pom里面添加版本号即可。

        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <version>2.3.6.RELEASE</version>
            <configuration>
                <fork>true</fork>
                <addResources>true</addResources>
            </configuration>
        </plugin>
    </plugins>