Hi there,
When checking compatibility to java11 using jdep, that was the output:
jdeps.exe -jdkinternals logback-classic-1.2.3.jar
logback-classic-1.2.3.jar -> JDK removed internal API
ch.qos.logback.classic.spi.PackagingDataCalculator -> sun.reflect.Reflection JDK internal API (JDK removed internal API)
Warning: JDK internal APIs are unsupported and private to JDK implementation that are
subject to be removed or changed incompatibly and could break your application.
Please modify your code to eliminate dependence on any JDK internal APIs.
For the most recent update on JDK internal API replacements, please check:
https://wiki.openjdk.java.net/display/JDK8/Java+Dependency+Analysis+Tool
JDK Internal API Suggested Replacement
---------------- ---------------------
sun.reflect.Reflection Use java.lang.StackWalker @since 9
Would there be a compatible version to java 11? If so then When?
Is there any way to evaluate if this code would not be reachable on specific project?
Thanks
Ofer