RE: Editor support for JSPs in not standard location

2019-06-06 Thread Jan Tosovsky
Thanks for that link to the source file. I could fix this issue by defining maven-war-plugin with specified warSourceDirectory. In NetBeans 11 that support works regardless war/jar packaging. Jan > -Original Message- > From: Laszlo Kishalmi > Sent: Thursday, June 6, 2019 3:46 PM > To:

Re: Error: JavaFX runtime components are missing, and are required to run this application

2019-06-06 Thread Luff,Chris
Agree with @Geertjan here….you need to choose an approach. I prefer maven which is by no means perfect but has good resource! I published some articles on modular JavaFX in NetBeans on DZone[1], probably should start blogging for Apache NetBeans (Geertjan?). [1]: https://dzone.com/articles/adop

Re: Editor support for JSPs in not standard location

2019-06-06 Thread Laszlo Kishalmi
Please fill an improvement request in our JIRA: https://issues.apache.org/jira/ Also our sources is available on GitHub: https://github.com/apache/netbeans Check this file: https://github.com/apache/netbeans/blob/master/enterprise/maven.j2ee/src/org/netbeans/modules/maven/j2ee/web/WebProjectWe

Editor support for JSPs in not standard location

2019-06-06 Thread j.tosovsky
I've found JSP pages are well supported only if located in standard src/ java/webapp/ folder and this maven project is packaged to war. Is it possible to configure NetBeans to have same JSP support also in another location, regardless the packaging type? I am investigating NetBeans for Li

Re: Error: JavaFX runtime components are missing, and are required to run this application

2019-06-06 Thread Geertjan Wielenga
The key problem is that you need to make a choice: are you using Ant or Maven? Are you creating a modular application or not? No one can help you if in each and every mail you send you're trying something completely different -- i.e., now you suddenly mention module-info.java, which means you're c

Re: Error: JavaFX runtime components are missing, and are required to run this application

2019-06-06 Thread Eef Custers
Hi Jose, Thanks for your respons. This commandline was generated by Netbeans in case one did not wanted to use Ant. This generated line contains errors ( colons instead of semecolons), which I ofcourse removed. The rest of the config is collected from internal settings. Indeed the mods directory

Re: Error: JavaFX runtime components are missing, and are required to run this application

2019-06-06 Thread jose . pereda
Hi Eef, Your command line says otherwise, but it tells what it is ultimately running: c:\java_lib\jdk-12.0.1/bin/java \ -p C:\java_lib\javafx-jmods-12.0.1; C:\java_lib\javafx-jmods-12.0.1; C:\java_lib\javafx-sdk-12.0.1\lib\javafx-swt.jar;C:\java_lib\javafx-sdk-12.0.1\lib\javafx.base.jar;

Re: Error: JavaFX runtime components are missing, and are required to run this application

2019-06-06 Thread Eef Custers
Hi Jose, I did not missed step 5, I had that configured. As you can read in my other reply to Geertjan something is going wrong at the initialisation of the boot layer. The VM parameters processing is complaining about the last value in the list, no matter what the value is. Regards, Eef Op do 6

Re: Error: JavaFX runtime components are missing, and are required to run this application

2019-06-06 Thread Geertjan Wielenga
It's very confusing right now. I suggest you simply decide to use Maven instead of Ant. And that you then close NetBeans. Just don't use NetBeans for a while. Instead, use the Maven approach described here: https://openjfx.io/openjfx-docs/#maven Once you have the above working (and if it doesn't

Re: Error: JavaFX runtime components are missing, and are required to run this application

2019-06-06 Thread Eef Custers
Sorry for the wrong replies. I forwarded the conversations to the user-group. Op do 6 jun. 2019 om 13:27 schreef Geertjan Wielenga : > You’re going to stop writing to me directly and start writing to the > mailing list. Bye. > > Gj > > > On Thu, 6 Jun 2019 at 13:13, Eef Custers wrote: > >> Hi Ge

Fwd: Error: JavaFX runtime components are missing, and are required to run this application

2019-06-06 Thread Eef Custers
-- Forwarded message - Van: Eef Custers Date: do 6 jun. 2019 om 13:29 Subject: Fwd: Error: JavaFX runtime components are missing, and are required to run this application To: NetBeans Mailing List -- Forwarded message - Van: Eef Custers Date: do 6 jun. 2019 om

Fwd: Error: JavaFX runtime components are missing, and are required to run this application

2019-06-06 Thread Eef Custers
-- Forwarded message - Van: Eef Custers Date: do 6 jun. 2019 om 13:12 Subject: Re: Error: JavaFX runtime components are missing, and are required to run this application To: Geertjan Wielenga Hi Geertjan, for me it is still not working. But I discovered something strainge. When

Fwd: Error: JavaFX runtime components are missing, and are required to run this application

2019-06-06 Thread Eef Custers
-- Forwarded message - Van: Eef Custers Date: do 6 jun. 2019 om 12:54 Subject: Re: Error: JavaFX runtime components are missing, and are required to run this application To: Geertjan Wielenga Hi Geertjan, I am using Maven, but at this moment I am trying all possible ways to get

Re: Error: JavaFX runtime components are missing, and are required to run this application

2019-06-06 Thread jose . pereda
Hi, you can still use Ant, of course, but as Geertjan already pointed out, you are missing this: --add-modules javafx.fxml,javafx.controls (no need for javafx.base nor javafx.graphics, as these are transitive dependencies of javafx.controls). which is also shown in the pic https://openjfx.io/