最佳答案
当我在我的多模块maven项目上运行maven install
时,我总是得到以下输出:
[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent!
所以,我在谷歌上搜索了一下,但我只能找到我必须添加的内容:
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
...到我的pom.xml。但它已经在那里了(在父类pom.xml
中)。
为maven-resources-plugin或maven-compiler-plugin配置<encoding>
也不能修复它。
那么问题是什么呢?