使用maven打包项目时报错:[INFO] Using 'UTF-8' encoding to copy filtered resources.

时间:2021-07-27
本文章向大家介绍使用maven打包项目时报错:[INFO] Using 'UTF-8' encoding to copy filtered resources.,主要包括使用maven打包项目时报错:[INFO] Using 'UTF-8' encoding to copy filtered resources.使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

有时候maven打包项目时会报这样的错:


[INFO] Scanning for projects...
[INFO]
[INFO] ------------------< com.atguigu:springboot_02_config >------------------
[INFO] Building springboot_02_config 0.0.1-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-resources-plugin:3.2.0:resources (default-resources) @ springboot_02_config ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Using 'UTF-8' encoding to copy filtered properties files.
[INFO] Copying 2 resources
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  1.679 s
[INFO] Finished at: 2021-07-27T13:54:22+08:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources) on project springboot_02_config: Input length = 1 -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

项目一直启动不了,很耽误时间。

解决方法:

===在springboot项目pom文件里的<build>标签里加上''maven-resources-plugin''插件,或者修改该插件的版本:===

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
</plugin>
</plugins>
</build>

此时我使用的是2.6版本,只要不报错都可以,然后去Maven选项栏clean install一下,就能正常运行了。

原文地址:https://www.cnblogs.com/sensen666/p/15065658.html