Re: Re: "Using an IDE" Page outdated (Openjfx)

2020-02-15 Thread Eric Bresie
Wanted to ping the netbeans mailing list to see if there is any input that could be provided to help on the open jfx as it relates to recent netbeans.. See https://wiki.openjdk.java.net/display/OpenJFX/Using+an+IDE#UsinganIDE-UsingNetBeans(JDK-8) I seem to recall sometime back that there was

Re: Re: "Using an IDE" Page outdated (Openjfx)

2020-01-15 Thread Eric Bresie
Anyone on the Netbeans community want to provide any updates on the openjfx IDE page listed below? Eric Bresie ebre...@gmail.com > On January 10, 2020 at 10:52:26 AM CST, Nir Lisker wrote: > Hi Robert, > > I've brought this up in the past. > > I think that the best solution is for someone from

Re: "Using an IDE" Page outdated

2020-01-14 Thread Robert Lichtenberger
> > Did you end up reverting the .classpath and .project files? > I started over, not importing as gradle but as java projects. I also just found https://openjfx-dev.openjdk.java.narkive.com/AVCV7WXg/problem-running-tests-in-module-controls-inside-eclipse and with Tom's hint: > i run them with

Re: "Using an IDE" Page outdated

2020-01-14 Thread Nir Lisker
> > The blank final field dialog may not have been initialized Dialog.java This is mentioned in the note under "Configure Eclipse to use the latest JDK". Did you end up reverting the .classpath and .project files? On Tue, Jan 14, 2020 at 10:37 AM Robert Lichtenberger <

Re: "Using an IDE" Page outdated

2020-01-14 Thread Tom Schindl
I think the issue there is https://bugs.eclipse.org/bugs/show_bug.cgi?id=507629 as Nir commented there as well I'm fairly sure this is the one you see ;-) Tom On 14.01.20 09:47, Tom Schindl wrote: > On 14.01.20 09:36, Robert Lichtenberger wrote: >> I've just simply removed the two missing source

Re: "Using an IDE" Page outdated

2020-01-14 Thread Tom Schindl
On 14.01.20 09:36, Robert Lichtenberger wrote: > I've just simply removed the two missing source folders and only one > error remains: > * The blank final field dialog may not have been initialized Dialog.java > /controls/src/main/java/javafx/scene/control line 521 > which seems to me like an

Re: "Using an IDE" Page outdated

2020-01-14 Thread Robert Lichtenberger
I've just simply removed the two missing source folders and only one error remains: * The blank final field dialog may not have been initialized Dialog.java /controls/src/main/java/javafx/scene/control line 521 which seems to me like an error within the eclipse compiler. Ignoring this error, I've

Re: "Using an IDE" Page outdated

2020-01-14 Thread Tom Schindl
Well those are created by the build not? I have to confess, that I did not setup Eclipse for OpenJFX-Development lately but I'm fairly certain those directories are generated by the build. Tom On 14.01.20 09:11, Robert Lichtenberger wrote: > I've tried to import using "General" -> "Existing

Re: "Using an IDE" Page outdated

2020-01-14 Thread Nir Lisker
I think your errors come from the note under "Using Gradle" in the Eclipse instructions. Gradle doesn't know how to create the correct Eclipse files, so it overrides the ones in the repo with its incorrect ones. Try to revert the changes to .project and .classpath files. You might still get a few

Re: "Using an IDE" Page outdated

2020-01-14 Thread Robert Lichtenberger
I've tried to import using "General" -> "Existing Projects in Workspace" but get lots of errors as well. When reducing the imported projects to base, graphics and controls: * base is ok * graphics has these errors: Description Resource Path Location Type Project 'graphics' is missing required

Re: "Using an IDE" Page outdated

2020-01-13 Thread Tom Schindl
Hi, I think Nir nor I uses them as gradle Projects because you have the .classpath, .project, ... . Tom On 14.01.20 08:12, Robert Lichtenberger wrote: > Yes, I did run a gradle build (for which I had to tweak > buildSrc/linux.gradle to ignore some deprecations -- see my other post to > the

Re: "Using an IDE" Page outdated

2020-01-13 Thread Robert Lichtenberger
Yes, I did run a gradle build (for which I had to tweak buildSrc/linux.gradle to ignore some deprecations -- see my other post to the list) successfully. I use a completely fresh workspace, updated my JFX sources, I use Eclipse 2019-12 and jdk-13.0.1+9 on Fedora 31. These are my steps: * open

Re: "Using an IDE" Page outdated

2020-01-13 Thread Nir Lisker
Never seen this problem before. Did you run a Gradle build? [1] It needs to generated required resources. Also, the Eclipse files for some projects are not updated (though for the modules they are fine, so it's not the problem you are having). My patch for them was pending review by other Eclipse

Re: "Using an IDE" Page outdated

2020-01-10 Thread Nir Lisker
Hi Robert, I've brought this up in the past. I think that the best solution is for someone from the community to take that task. I try to keep the Eclipse section updated, we will need someone for the other IDE's. - Nir On Fri, Jan 10, 2020 at 10:54 AM Robert Lichtenberger <

"Using an IDE" Page outdated

2020-01-10 Thread Robert Lichtenberger
I've noticed that https://wiki.openjdk.java.net/display/OpenJFX/Using+an+IDE seems a bit outdated (refers to JDK 1.8, a folder named "rt", which no longer exists, etc.). Could someone please update this page so that it is easier for newcomers to dive into the development of OpenJFX. Thanks,