Re: Netbeans 8.1 could not install some modules
Martin Entlicher <[email protected]>
| Newsgroups | gmane.comp.java.netbeans.modules.openide.devel |
|---|---|
| Message-ID | <[email protected]> |
During the run, some implementation modules are also required, which are not necessary for compilation. There are modules providing the API (that you use for compilation) and providing the implementation (which need to be added for successful execution). E.g. org.netbeans.modules.debugger.jpda needs someone to provide an implementation of SourcePathProvider, which is provided by debugger.jpda.projects, therefore you need to include that as well. Etc... Regards, Martin On 20.1.2016 14:24, ctajuggler wrote: > I'm building a netbeans platform application on Netbeans 8.1. > > I've added a bunch of module dependencies and the application compiles fine, but when I try to run it I get: > > org.netbeans.modules.xml.xam - No module providing the capability org.netbeans.modules.xml.xam.spi.ModelAccessProvider could be found. > org.netbeans.modules.xml.xam - No module providing the capability org.netbeans.modules.xml.xam.spi.DocumentModelAccessProvider could be found. > org.netbeans.modules.debugger.jpda - None of the modules providing the capability org.netbeans.spi.debugger.jpda.SourcePathProvider could be installed. > org.netbeans.modules.debugger.jpda - None of the modules providing the capability org.netbeans.spi.debugger.jpda.EditorContext could be installed. > . > . > . (+ many others) > > I've seen other forum posts reporting something similar e.g. https://forums.netbeans.org/topic63631.html > > I've tried deleting the netbeans user and cache directories and restarting netbeans, but I get the same error. > > Any ideas? > > > >