mbien commented on PR #9020: URL: https://github.com/apache/netbeans/pull/9020#issuecomment-3545330910
i ran a little experiment: 1. checked out this pr 2. switched to felix (which is already bundled and up2date) 3. started, activated all clusters manually via plugins 4. could create a project without exceptions next, I added https://github.com/mbien/netbeans/commits/bc182/ on top, rebuild and the updated mods did load too. ergonomics is broken though, that is why I had to manually activate the clusters. I didn't know how to switch the osgi impl from ancient equinox to felix (both were in the lookup though, felix is at the end since it has no position set). So i hardcoded it as test: replace Netigso L141: <details> ```java Collection<? extends FrameworkFactory> impls = lkp.lookupAll(FrameworkFactory.class); FrameworkFactory frameworkFactory = new ArrayDeque<>(impls).getLast(); System.out.println("<<<<<<<<<<<"); System.out.println("osgi factory: " + frameworkFactory); System.out.println("<<<<<<<<<<<"); // FrameworkFactory frameworkFactory = lkp.lookup(FrameworkFactory.class); ``` </details> -- 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
