mbien commented on code in PR #7772: URL: https://github.com/apache/netbeans/pull/7772#discussion_r1767917471
########## 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: this looks like it would resolve the wildfly issue @mrcasio mentioned https://github.com/apache/netbeans/pull/7055#issuecomment-2361272391 -- 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