Eric, Many thanks for your response. I will try that. Do you have an idea of timescale for releases of 6.0? Regards Mark
Hello, I hope you can help with a Java 9 build problem that I am having. Using the ANT task, when obfuscating with Java 8, I include rt.jar as a library jar: ... <proguard> -libraryjars "${java.home}/lib/rt.jar" -libraryjars "${repository.dir}/${mail.jar}" ... But now trying to obfuscate with Java 9, there is no rt.jar so I substituted with jrt-fs.jar: ... <proguard> -libraryjars "${java.home}/lib/jrt-fs.jar" -libraryjars "${repository.dir}/${mail.jar}" ... However this leads to failure with many...