maven命令行窗口运行纠错
程序员文章站
2022-06-05 16:43:56
...
在cmd窗口中执行 mvn compile时,报警告
[WARNING] Using platform encoding (GBK actually) to copy filtered resources, i.e. build is platform dependent!
这表示没有规范字符种类,需要在父pom文件中的project里添加
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
再次运行就不会有警告了
下一篇: 浅谈PL/SQL