Re: NB11 - gradle support

2019-07-10 Thread Geertjan Wielenga
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.runtimeClasspath args 'mrhaki' systemProperty 'simple

Re: NB11 - gradle support

2019-07-10 Thread Geertjan Wielenga
If you can provide a small project on GitHub that has the kind of set up that you need 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 > > > > *From:* Mike Bil

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
I was able to get this far… task autoPickInterface(type:Exec) { standardOutput System.out standardInput System.in commandLine 'cmd', '/v', '/c', '"choices.bat -j 11x64 -s 17x64 & sandbox & run-profile creekstone & java Products.HostInterface.HostInterface -r -n autoPickInterface -l"' } Ho