springboot mvn install Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:


错误信息:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources) on project swxt_crawler_manager: 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:

解决方法:增加maven-resources-plugin插件,然后mvn install

<build>
        <plugins>
            <plugin>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-maven-pluginartifactId>
            plugin>

            
                org.apache.maven.plugins
                maven-resources-plugin
                2.4.3
            
        plugins>
    build>