- 在启动Spring Boot项目时,突然报如下错误:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources) on project xxxxxxx: Input length = 1 -> [Help 1]
根据报错信息得知引入maven插件maven-resources-plugin
的版本可能冲突,我使用的 Spring Boot 版本是 2.5.7
,而这里用到的maven插件是3.2.0
默认引入的插件:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.2.0</version>
</plugin>