How do I specify (or "force") the maven jar plugin to use my specific encoding (UTF-8) ?
My build plugin :
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<executions>
<execution>
<phase>package</phase>
<id>configurations-test</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classesDirectory>target/test</classesDirectory>
<forceCreation>true</forceCreation>
<finalName>${artifactId}-test</finalName>
</excludes>
</configuration>
</execution>
</executions></plugin>
I set the encoding in the parent pom and every copies is executed with the right encoding
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
I controled the files just before the Jar is created, these are well formated.
Note, I did many tried addind specific encoding to the configuration but it still won't work, in my packaged Jars I found unwell formatted characters (like é, which should be é)
The unzipped files (html, xml, properties etc.) contains such characters like é instead of é.