SpringBoot打包项目时遇到的error

一:Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources) on project springboot_02_helloword: Input length = 1 -> [Help 1]

原因:版本兼容问题

解决办法:更改pom.xml文件如下图所示位置的版本

SpringBoot打包项目时遇到的error

二:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:testCompile (default-testCompile) on project springboot_02_helloword: Fatal error compiling

原因:缺少插件

解决办法:在pom.xml中添加如下代码,即可解决

			<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.1</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <encoding>utf8</encoding>
                </configuration>
            </plugin>

Yes!
SpringBoot打包项目时遇到的error

上一篇:浅析NuxtJS项目如何进行qiankan微前端架构改造


下一篇:maven shade plugin