YannLeCorse opened a new pull request, #7584: URL: https://github.com/apache/netbeans/pull/7584
In a Netbeans application based on Maven, the `nbm-maven-plugin` is failing with the following message while both modules are explicitly part of the application. ``` [ERROR] Some tokens required by included modules are not provided by included modules. The application will fail starting up. The missing tokens are: [ERROR] org.openide.windows.IOProvider ref: [org.netbeans.modules.css.visual] ``` Looking at the [ExamineManifest source code](https://github.com/apache/netbeans-mavenutils-nbm-maven-plugin/blob/601764a0c8342cf90f3dbc0a6c3e102d83d6d67c/nb-shared/src/main/java/org/apache/netbeans/nbm/utils/ExamineManifest.java#L196-L199) the `nbm-maven-plugin` is expecting to find comma separated values. Looking at the other Manifest on Netbeans source code, it seems that other are comma separated already - [ide/xml.xdm/manifest.mf](https://github.com/apache/netbeans/blob/faabea09cba7ad3af5744813cfd1a6d7d52157a5/ide/xml.xdm/manifest.mf#L5) - [ide/projectui/manifest.mf](https://github.com/apache/netbeans/blob/faabea09cba7ad3af5744813cfd1a6d7d52157a5/ide/projectui/manifest.mf#L6) - [webcommon/libs.graaljs/manifest.mf](https://github.com/apache/netbeans/blob/faabea09cba7ad3af5744813cfd1a6d7d52157a5/webcommon/libs.graaljs/manifest.mf#L7) - Etc. Thus `core.output2` seems to have a typo addressed by this pull request. -- 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
