errael commented on issue #7365: URL: https://github.com/apache/netbeans/issues/7365#issuecomment-2099355830
I didn't even think about the class file version. The project is compiled for `jdk-11`, there are some multi version jars that have something for `jdk-16`. In the main gradle directory, `astrology-castro/codegen` I did the following. Yep, makes no sense. gradle is supposed to use JDK-11 because it a gradle 6.8.3 project. ``` $ for i in $(find . -name '*.class'); do echo $(javap -v $i | grep 'major version');done | sort | uniq major version: 55 major version: 60 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
