mbien commented on code in PR #7772: URL: https://github.com/apache/netbeans/pull/7772#discussion_r1768034994
########## enterprise/javaee.wildfly/src/org/netbeans/modules/javaee/wildfly/ide/ui/WildflyPluginUtils.java: ########## @@ -440,6 +442,10 @@ private static Attributes findManifestAttributes(File serverPath, String slot) { JarFileSystem featurePackProductConfJar = new JarFileSystem(file); return featurePackProductConfJar.getManifest().getMainAttributes(); } + if (file.getName().startsWith("wildfly-ee-feature-pack-product-conf") && file.getName().endsWith(".jar")) { + JarFileSystem featurePackProductConfJar = new JarFileSystem(file); + return featurePackProductConfJar.getManifest().getMainAttributes(); + } Review Comment: i can't test JBoss EAP 8 since it requires an account to download, I tested simple start/stop using WildFly 30, 31, 32 and 33 and it worked. However, it did also work on NetBeans 23 already - so I can't reproduce the original wildfly issue. -- 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: notifications-unsubscr...@netbeans.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@netbeans.apache.org For additional commands, e-mail: notifications-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists