Using platform encoding (GBK actually) to copy filtered resources, i.e. build is platform dependent!

执行Maven Install打包的时候,提示以下警告信息: 
[WARNING] Using platform encoding (GBK actually) to copy filtered resources, i.e. build is platform dependent!

需要在<project>中添加<properties>标签:

<properties>
         <project.build.sourceEncoding>
             UTF-8
         </project.build.sourceEncoding>
</properties>
原文地址:https://www.cnblogs.com/azhqiang/p/5245756.html