Re: [PLATFORM 8.2] Including existing plugins into a suite build

2018-01-24 Thread Marc Streckfuß
So I tried to debug NbProblemDisplayer#messageForProblem to find out what the root of the missing modules is (since it's actually only two which are missing, but I can't add them since I'm not a "friend" of them). My problem now is that the stock IDE does not have a sources.jar and they can't be d

Re: [PLATFORM 8.2] Including existing plugins into a suite build

2018-01-23 Thread Marc Streckfuß
It's the jMonkeyEngine SDK (3D GameDev) and currently our users can only build using Ant, but many projects are now based on gradle. The Problem is that we have our own "implementation" of the Project API as we add some Custom Tasks to the build process and also only enable our special editors if a

Re: [PLATFORM 8.2] Including existing plugins into a suite build

2018-01-23 Thread Geertjan Wielenga
Would also be useful to know a little about the context. I.e., where/how is this application used and why not let the user install the plugin, i.e., why does it need to be bundled at all? Gj On Tue, Jan 23, 2018 at 12:24 PM, Marc Streckfuß wrote: > The Module was already removed in the codebase

Re: [PLATFORM 8.2] Including existing plugins into a suite build

2018-01-23 Thread Marc Streckfuß
The Module was already removed in the codebase I was given, but I assume it was to reduce download size, because the plugin could easily be downloaded by the user. Integrating the Sources is not so trivial though, because that module is build with gradle, so I have to see how it integrates (if it's

Re: [PLATFORM 8.2] Including existing plugins into a suite build

2018-01-23 Thread Geertjan Wielenga
I'd recommend getting the sources of the Gradle Support plugin and including that in your application, instead of doing it the way you're doing it now. Gj On Tue, Jan 23, 2018 at 12:09 PM, Geertjan Wielenga wrote: > Why did you have to remove 'org.netbeans.modules.maven'? > > Gj > > On Tue, Jan

Re: [PLATFORM 8.2] Including existing plugins into a suite build

2018-01-23 Thread Geertjan Wielenga
Why did you have to remove 'org.netbeans.modules.maven'? Gj On Tue, Jan 23, 2018 at 11:58 AM, Marc Streckfuß wrote: > It's the Gradle Support Plugin > (https://github.com/kelemen/netbeans-gradle-project/). > > I am installing the Gradle Support Plugin into the shared location (that > is netbeans

Re: [PLATFORM 8.2] Including existing plugins into a suite build

2018-01-23 Thread Marc Streckfuß
It's the Gradle Support Plugin (https://github.com/kelemen/netbeans-gradle-project/). I am installing the Gradle Support Plugin into the shared location (that is netbeans/extra/). Then in the RCP App, I go to a Module's Library Settings and click Add Dependency and tick "show non-api modules" and

Re: [PLATFORM 8.2] Including existing plugins into a suite build

2018-01-23 Thread Geertjan Wielenga
Which specific plugin are you talking about? What are the steps you're taking so someone can reproduce them? Thanks, Gj On Mon, Jan 22, 2018 at 9:16 PM, Marc Streckfuß wrote: > Hey Guys, > > I'm currently trying to bundle a plugin from the update center with my > application. > In the long run,

[PLATFORM 8.2] Including existing plugins into a suite build

2018-01-22 Thread Marc Streckfuß
Hey Guys, I'm currently trying to bundle a plugin from the update center with my application. In the long run, I try to subclass that plugin to adjust some of it's features to said application, but that's not yet done. I've followed some instructions found on the net claiming to set the download/