neilcsmith-net commented on PR #3860: URL: https://github.com/apache/netbeans/pull/3860#issuecomment-1193155611
Thanks @oyarzun - I'd missed that reference on list. We also have MRJs in the IDE. If my bash-fu is correct, then running this over NB15-rc1 ```bash for i in `find . -name "*.jar"`; do jar tvf $i | grep META-INF/versions/ > /dev/null ; if [ $? == 0 ]; then echo "$i"; fi; done ``` gives us the following files in the IDE that _might_ start behaving differently (well, correctly!) _in some fashion_? ``` ./enterprise/modules/ext/metro/webservices-tools.jar ./enterprise/modules/ext/metro/webservices-api.jar ./enterprise/modules/ext/metro/webservices-rt.jar ./enterprise/modules/ext/jersey2/jersey-common-2.34.jar ./enterprise/modules/ext/jersey2/jakarta.xml.bind-api-2.3.3.jar ./java/modules/ext/byte-buddy-1.10.6.jar ./java/modules/ext/maven/lucene-core-8.11.1.jar ./java/modules/ext/jaxws22/jaxws-rt.jar ./java/modules/ext/jaxws22/jaxws-tools.jar ./java/modules/ext/nb-javac-jdk-18-api.jar ./platform/modules/ext/flatlaf-2.4.jar ./webcommon/modules/ext/js-20.3.0.jar ./ide/modules/com-jcraft-jsch.jar ./ide/modules/bcpg.jar ./ide/modules/bcprov.jar ./ide/modules/bcpkix.jar ./ide/modules/bcutil.jar ./ide/modules/ext/truffle-api-20.3.0.jar ./ide/modules/ext/jaxb/jaxb-impl.jar ./ide/modules/ext/jaxb/api/jaxb-api.jar ./ide/modules/ext/jaxb/jaxb-xjc.jar ./ide/modules/ext/junixsocket-common-2.4.0.jar ./ide/modules/ext/junixsocket-native-common-2.4.0.jar ``` -- 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
