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>

 

你可能感兴趣的:(Using platform encoding (GBK actually) to copy filtered resources, i.e. build is platform dependent!)