Re: JavaFX 11 run problem

2018-09-22 Thread Dragan Bjedov
And for debug add following action to nbactions.xml debug jar process-classes org.codehaus.mojo:exec-maven-plugin:1.5.0:exec -agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address} --

Re: JavaFX 11 run problem

2018-09-22 Thread Dragan Bjedov
Hello, I manage to make that *Compile on Save* feature working. It still needs to be modular app. This my nbactions.xml: run jar process-classes org.codehaus.mojo:exec-maven-plugin:1.5.0:exec

Re: JavaFX 11 run problem

2018-09-22 Thread Dragan Bjedov
Hello Mathew, Thanks. This works, but it has disadvantage that I need to do Clean&Build (which is mvn clean install) when I make any change in order to see change in run app. With this, Compile on Save feature is not working. Also is there way make this working in plain Java app, without modules.