打包报错:maven-resources-plugin:3.2.0:resources (default-resources) on project
添加如下依赖:
<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>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> </plugin>
posted on 2022-01-10 14:34 RICH-ATONE 阅读(1870) 评论(0) 编辑 收藏 举报