警告: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!

解决:需要在pom.xml中的<project>中添加<properties>标签:

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

猜你喜欢

转载自www.cnblogs.com/2549372994jing/p/10526226.html
今日推荐