Closed ebourg closed 1 month ago
While I sure don't mind if it helps you, I am not sure how I feel about support java 8 for the future. IIRC it was EOL in 2019. That's quite a while ago. I am not eager re-include support for the ancient.
Thank you. The 2019 EOL was for the Oracle JDK, but Red Hat keeps maitaining OpenJDK 8 until the end of 2026 (and even 2030 for paid updates). Java 8 is still used by 25-30% of projects, that's still significant (fortunately or unfortunately, but difficult to ignore for a build tool).
I use jdeb in a project supporting Java 8 (Jsign) but the latest version of jdeb requires Java 11. It looks like the only thing requiring Java 11 is a test case using
List.of()
. Do you mind if I replace it withArrays.asList()
to restore the compatibility with Java 8?