欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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!
maven命令行窗口运行纠错
这表示没有规范字符种类,需要在父pom文件中的project里添加

<properties>
         <project.build.sourceEncoding>
             UTF-8
         </project.build.sourceEncoding>
</properties>

再次运行就不会有警告了
maven命令行窗口运行纠错