Dealing with missing token for org.netbeans.modules.nbjavac

2019-08-20 Thread Alex Kotchnev
I was working on rebuilding the nbscala modules, and after a few changes to get things working, I still end up with the following error message : Some tokens required by included modules are not provided by included modules. The application will fail starting up. The missing tokens are:

Re: Add compilation classpath support to groovy classes created from a Netbeans plugin

2019-08-20 Thread Neil C Smith
On Wed, 21 Aug 2019, 00:54 rohan julka, wrote: > Any idea on how to set a specific classpath to the plugin source code (we > know what dependencies to add but don't know where to put them in order to > let groovy scripts see them) so that Netbeans will recognize related > imports and so code

Add compilation classpath support to groovy classes created from a Netbeans plugin

2019-08-20 Thread rohan julka
Hi, we have a Netbeans plugin for our application that mainly allows you to create a ".groovy" script on the fly that will be placed under the system temp folder.The problem we have is that, when the groovy class is created, Netbeans does not recognize imports and code autocompletion is not

Re: Platform wrapped jar cannot access META-INF/service impl via ServiceLoader

2019-08-20 Thread Damian Carey
Geertjan, Emi and Boris, Many thanks for responding. It seems that Lookup and ServiceLoader are similar, yet different enough to be troublesome. I will need to do more testing, but first I will try to inject the services I need via a method, and not via META-INF/resources. Much appreciated.