Springboot项目打包错误提示maven-resources-plugin:3.2.0:resources (default-resources) @ 07-springboot-session

Springboot项目打包错误提示

错误信息如下

[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-resources-plugin:3.2.0:resources (default-resources) @ 07-springboot-session ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Using 'UTF-8' encoding to copy filtered properties files.
[INFO] Copying 1 resource
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------

先上解决办法如下,在pom.xml文件中的插件中加上这个插件。
由于使用最新版本打包器,支持Java Runtime (class file version 61.0)版本,对低版本java8(52.0)未做适配。
1、指定低版本的springboot打包器

            <plugin>
                <groupId>org.apache.maven.pluginsgroupId>
                <artifactId>maven-resources-pluginartifactId>
                <version>2.6version>
            plugin>

你可能感兴趣的:(项目中遇见的问题,maven,plugin)