for jvm compatibility, we are compiling a program with the jdk 1.5 version and the UTF-8 encoding (Maven plugin). But recently we changed the jdk version to 1.7 and from that we get a lot of "error: unmappable character for encoding UTF-8"
while, we didn't have this kind of error when we compile it with the jdk 1.5 version.
Is there a way to compile this program without getting these errors with the jdk 1.7 ?
We have already tested the solutions suggested like the 'text file encoding' property in eclipse or the 'encoding' tag for maven-compiler-plugin but without success.
thanks