Maven and the encoding of Java files
Friday, October 3rd, 2008I was mavenizing a java project (I was using ant earlier) on my macbook and I realized that since I was using UTF-8 on my macbook the files were compiled using UTF-8 instead of ISO-8859-1 (some strings where corrupted).
The solution is to add the encoding parameter to the maven-compiler-plugin
March 5th, 2009 at 12:52 pm
That was helpful, thanks!