I want the encoding of my project file to be set to UTF-8.
Following the maven FAQ answer , I set the property project.build.sourceEncodingto UTF-8. Unfortunately, it has no effect.
Then, looking at the m2eclipse JIRA , I tried a workaround, defining a compiler plugin sourceEncoding, but it did not work, since I try to do this in a separate parent pom module.
Then, what is the solution to ensure that my files are in UTF-8 from maven?
Thank.
source
share