maven编译工程报错
File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent!
在properties添加源码编码设置解决:
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
maven编译工程报错
File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent!
在properties添加源码编码设置解决:
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>