如何在 Maven 中配置编码?
当我在我的多模块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>
那么问题出在哪里呢?