Re: NB11 - gradle support

2019-07-11 Thread Peter Steele
ars gradle is building the command line with each jar file being > added to the classpath. Don’t know if there isa way to shortcut that… > > > > Mike > > > > *From:* Geertjan Wielenga > *Sent:* Thursday, July 11, 2019 9:14 AM > *To:* Mike Billman > *Cc:* Las

Re: NB11 - gradle support

2019-07-11 Thread Laszlo Kishalmi
=206, The filename or extension is too long Is there an easy way around this? Mike *From:* Geertjan Wielenga *Sent:* Wednesday, July 10, 2019 4:28 PM *To:* Mike Billman *Cc:* Laszlo Kishalmi ; users@netbeans.apache.org *Subject:* Re: NB11 - gradle support If you have multiple main classes

Re: NB11 - gradle support

2019-07-11 Thread Geertjan Wielenga
sspath, I get: > > > > CreateProcess error=206, The filename or extension is too long > > > > Is there an easy way around this? > > > > Mike > > > > *From:* Geertjan Wielenga > *Sent:* Wednesday, July 10, 2019 4:28 PM > *To:* Mike Billman > *Cc:* Laszlo Kishalm

RE: NB11 - gradle support

2019-07-11 Thread Mike Billman
Subject: Re: NB11 - gradle support If you have multiple main classes, you'd create a task like this for each of them and then run a task as needed: task(runSimple, dependsOn: 'classes', type: JavaExec) { main = 'com.mrhaki.java.Simple' classpath = sourceSets.main.

Re: NB11 - gradle support

2019-07-10 Thread Geertjan Wielenga
eed help with, I can try to help. > > Gj > > On Wed, Jul 10, 2019 at 9:52 PM Mike Billman > wrote: > >> Is there an equivalent to the “run configurations” available in >> eclipse/intellij? >> >> >> >> Mike >> >> >> >> *F

Re: NB11 - gradle support

2019-07-10 Thread Geertjan Wielenga
t; > > > *From:* Mike Billman > *Sent:* Wednesday, July 10, 2019 3:43 PM > *To:* Laszlo Kishalmi ; > users@netbeans.apache.org > *Subject:* RE: NB11 - gradle support > > > > I was able to get this far… > > > > task autoPickInterface(type:Exe

RE: NB11 - gradle support

2019-07-10 Thread Mike Billman
Is there an equivalent to the “run configurations” available in eclipse/intellij? Mike From: Mike Billman Sent: Wednesday, July 10, 2019 3:43 PM To: Laszlo Kishalmi ; users@netbeans.apache.org Subject: RE: NB11 - gradle support I was able to get this far… task autoPickInterface(type:Exec

RE: NB11 - gradle support

2019-07-10 Thread Mike Billman
cts.HostInterface.HostInterface' args '-r -n autoPickInterface -l' } And I get an enormous classpath… Mike From: Laszlo Kishalmi Sent: Tuesday, July 2, 2019 5:18 PM To: users@netbeans.apache.org Subject: Re: NB11 - gradle support The best way to do it to add Gradle tasks in you

Re: NB11 - gradle support

2019-07-02 Thread Laszlo Kishalmi
to set this up…custom tasks? Thanks. Mike *From:* Geertjan Wielenga *Sent:* Tuesday, July 2, 2019 3:02 PM *To:* Mike Billman *Cc:* users@netbeans.apache.org *Subject:* Re: NB11 - gradle support Open the project and click Run. If the above doesn't work, what's the problem exactly

RE: NB11 - gradle support

2019-07-02 Thread Mike Billman
: users@netbeans.apache.org Subject: Re: NB11 - gradle support Open the project and click Run. If the above doesn't work, what's the problem exactly so that we can help with the problem you're encountering? Gj On Tue, Jul 2, 2019 at 9:00 PM Mike Billman mailto:mikebill...@qcsoftw

Re: NB11 - gradle support

2019-07-02 Thread Geertjan Wielenga
Open the project and click Run. If the above doesn't work, what's the problem exactly so that we can help with the problem you're encountering? Gj On Tue, Jul 2, 2019 at 9:00 PM Mike Billman wrote: > Hey – > > > > I was wondering if there are any tutorials on using the new gradle support > int