执行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>
原文地址:https://www.cnblogs.com/2549372994jing/p/10526226.html
时间: 2024-11-05 03:19:49