I have a maven dependency on jar which contains French characters in a static block of a class.
Now while making the call to this class I get NoClassDefFoundError. After importing the code in eclipse i found that French characters are creating compilation issues thats why my class is not getting loaded.
Is there any way to specify character encoding support in Maven for the dependent jar?
I have already tried -Dfile.encoding=UTF-8 option, but it didn't work.