You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@netbeans.apache.org by David Green <dg...@gmail.com> on 2019/10/06 02:11:36 UTC

JavaFX needs some additional default support IMO

Using Netbeans 11.2.beta2 (although same issues seem to apply to 11.1 
release),

Using the example from https://openjfx.io/openjfx-docs/ for modules with 
Maven and NetBeans which is also highlighted in the video 
https://www.youtube.com/watch?v=8xaRwqcKPSI&feature=youtu.be, this 
allows one to run code with openJavaFX quite nicely with Run Project but 
Debug Project and Generate JavaDoc fail.

It would be nice if these and perhaps a build image of some sort were 
automatically accomplishable by the base Maven pom.  It would greatly 
help folks start using NetBeans for new projects.

I have found a variant of Mathew Dusome’s code 
<http://mail-archives.apache.org/mod_mbox/netbeans-users/201811.mbox/%3c017501d484e0$c7aad770$57008650$@dsolutions.ca%3e> 
  to work for everything but the Javadoc although I ran into a few 
issues.

Dave

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
For additional commands, e-mail: dev-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists




Re: JavaFX needs some additional default support IMO

Posted by Geertjan Wielenga <ge...@apache.org>.
Great research!

Gj

On Tue, 8 Oct 2019 at 03:09, David Green <dg...@gmail.com> wrote:

> OK, feels like hacking but I found that this addition to the POM did the
> trick:
>
> ```
>             <plugin>
>                  <groupId>org.apache.maven.plugins</groupId>
>                  <artifactId>maven-javadoc-plugin</artifactId>
>                  <version>3.1.1</version>
>                  <configuration>
>                      <source>11</source>
>                      <target>11</target>
>
>  <sourceFileExcludes>**/module-info.java</sourceFileExcludes>
>                  </configuration>
>              </plugin>
> ```
>
> I found this in someone else’s struggles
>
> https://stackoverflow.com/questions/55676341/java-11-12-javadoc-with-maven-results-in-not-generating-javadocs-for-tests
>
> A gist with everything including corresponding nbactions.xml :
> https://gist.github.com/dgreen/e1ae4636f311d38758dafdd7b0decf0f  (all
> built for Group ID: edu.uab.dgreen ArtifactID: fxdemo) source from the
> Java Application with Maven using javafx-archetype-simple .
>
> Thanks for the help.  There are probably simpler versions and I hope one
> can be found to make part of a future NetBeans so that it is easier to
> start new projects.
>
> Dave
>
> On 7 Oct 2019, at 17:20, David Green wrote:
>
> > I am in this camp (of wanting to generate javadoc formatted pages.  I
> > had been through these references (that you suggested — thanks
> > though).
> >
> > I have now discovered that javadoc:javadoc works (either within
> > NetBeans or at the command line with Maven) if the module-info.java
> > file does NOT exist but, of course, the rest of my build system wants
> > it there to define the module.
> >
> > (Perhaps unrelated but…) Looking at the old Jigsaw project it
> > appears that the file structure included the module name as a
> > directory entry right below source which is now visually there in the
> > NetBeans IDE but the actual directory is src/main/java/….
> >
> > Dave
> >
> > On 7 Oct 2019, at 14:13, Geertjan Wielenga wrote:
> >
> >> And also for generating your own, that's a Maven task:
> >>
> >> https://maven.apache.org/plugins/maven-javadoc-plugin/
> >>
> >> Gj
> >>
> >> On Mon, Oct 7, 2019 at 9:11 PM Geertjan Wielenga
> >> <ge...@apache.org>
> >> wrote:
> >>
> >>> Maybe this:
> >>>
> >>>
> >>>
> https://stackoverflow.com/questions/54278159/javafx-11-in-netbeans-10-with-maven-has-no-sources-javadocs
> >>>
> >>> Gj
> >>>
> >>> On Mon, Oct 7, 2019 at 9:01 PM David Green <dg...@gmail.com>
> >>> wrote:
> >>>
> >>>> Thanks.
> >>>>
> >>>> Any on hints on generating Javadoc?
> >>>>
> >>>> Dave
> >>>>
> >>>> On 6 Oct 2019, at 8:59, Geertjan Wielenga wrote:
> >>>>
> >>>>> For debugging, this works:
> >>>>>
> >>>>>
> >>>>
> https://stackoverflow.com/questions/56197372/i-cant-debug-an-application-using-netbeans-11-with-javafx-12
> >>>>>
> >>>>> Gj
> >>>>>
> >>>>>
> >>>>> On Sun, Oct 6, 2019 at 7:05 AM Geertjan Wielenga
> >>>>> <ge...@apache.org>
> >>>>> wrote:
> >>>>>
> >>>>>> However, take a look at Samples | OpenJFX in 11.1.
> >>>>>>
> >>>>>> Those two samples have the nbactions file that contains the debug
> >>>>>> target
> >>>>>> too.
> >>>>>>
> >>>>>> Gj
> >>>>>>
> >>>>>> On Sun, Oct 6, 2019 at 6:58 AM Geertjan Wielenga
> >>>>>> <ge...@apache.org>
> >>>>>> wrote:
> >>>>>>
> >>>>>>> Yes, that is my aim too, it will happen, probably not for 11.2.
> >>>>>>>
> >>>>>>> Gj
> >>>>>>>
> >>>>>>> On Sun, Oct 6, 2019 at 6:53 AM David Green <dg...@gmail.com>
> >>>>>>> wrote:
> >>>>>>>
> >>>>>>>> Yes.
> >>>>>>>>
> >>>>>>>> That would be most useful.
> >>>>>>>>
> >>>>>>>> Long term, it would be nice to have this be set up when
> >>>>>>>> selecting a
> >>>>>>>> project type.
> >>>>>>>>
> >>>>>>>> Thanks,
> >>>>>>>>
> >>>>>>>> Dave
> >>>>>>>>
> >>>>>>>> On 5 Oct 2019, at 23:35, Geertjan Wielenga wrote:
> >>>>>>>>
> >>>>>>>>> So, the project runs as described in:
> >>>>>>>>> https://www.youtube.com/watch?v=8xaRwqcKPSI?
> >>>>>>>>>
> >>>>>>>>> You want another YouTube clip just like that showing how to
> >>>>>>>>> set up
> >>>>>>>>> Debug
> >>>>>>>>> and Javadoc goals in NetBeans?
> >>>>>>>>>
> >>>>>>>>> Gj
> >>>>>>>>>
> >>>>>>>>> On Sun, Oct 6, 2019 at 4:12 AM David Green
> >>>>>>>>> <dg...@gmail.com>
> >>>>>>>>> wrote:
> >>>>>>>>>
> >>>>>>>>>> Using Netbeans 11.2.beta2 (although same issues seem to apply
> >>>>>>>>>> to
> >>>>>>>>>> 11.1
> >>>>>>>>>> release),
> >>>>>>>>>>
> >>>>>>>>>> Using the example from https://openjfx.io/openjfx-docs/ for
> >>>>>>>>>> modules
> >>>>>>>>>> with
> >>>>>>>>>> Maven and NetBeans which is also highlighted in the video
> >>>>>>>>>> https://www.youtube.com/watch?v=8xaRwqcKPSI&feature=youtu.be,
> >>>>>>>>>> this
> >>>>>>>>>> allows one to run code with openJavaFX quite nicely with Run
> >>>>>>>>>> Project
> >>>>>>>>>> but
> >>>>>>>>>> Debug Project and Generate JavaDoc fail.
> >>>>>>>>>>
> >>>>>>>>>> It would be nice if these and perhaps a build image of some
> >>>>>>>>>> sort
> >>>>>>>>>> were
> >>>>>>>>>> automatically accomplishable by the base Maven pom.  It would
> >>>>>>>>>> greatly
> >>>>>>>>>> help folks start using NetBeans for new projects.
> >>>>>>>>>>
> >>>>>>>>>> I have found a variant of Mathew Dusome’s code
> >>>>>>>>>> <
> >>>>>>>>>>
>

Re: JavaFX needs some additional default support IMO

Posted by David Green <dg...@gmail.com>.
OK, feels like hacking but I found that this addition to the POM did the 
trick:

```
            <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-javadoc-plugin</artifactId>
                 <version>3.1.1</version>
                 <configuration>
                     <source>11</source>
                     <target>11</target>
                     <sourceFileExcludes>**/module-info.java</sourceFileExcludes>
                 </configuration>
             </plugin>
```

I found this in someone else’s struggles 
https://stackoverflow.com/questions/55676341/java-11-12-javadoc-with-maven-results-in-not-generating-javadocs-for-tests

A gist with everything including corresponding nbactions.xml :  
https://gist.github.com/dgreen/e1ae4636f311d38758dafdd7b0decf0f  (all 
built for Group ID: edu.uab.dgreen ArtifactID: fxdemo) source from the 
Java Application with Maven using javafx-archetype-simple .

Thanks for the help.  There are probably simpler versions and I hope one 
can be found to make part of a future NetBeans so that it is easier to 
start new projects.

Dave

On 7 Oct 2019, at 17:20, David Green wrote:

> I am in this camp (of wanting to generate javadoc formatted pages.  I 
> had been through these references (that you suggested — thanks 
> though).
>
> I have now discovered that javadoc:javadoc works (either within 
> NetBeans or at the command line with Maven) if the module-info.java 
> file does NOT exist but, of course, the rest of my build system wants 
> it there to define the module.
>
> (Perhaps unrelated but…) Looking at the old Jigsaw project it 
> appears that the file structure included the module name as a 
> directory entry right below source which is now visually there in the 
> NetBeans IDE but the actual directory is src/main/java/….
>
> Dave
>
> On 7 Oct 2019, at 14:13, Geertjan Wielenga wrote:
>
>> And also for generating your own, that's a Maven task:
>>
>> https://maven.apache.org/plugins/maven-javadoc-plugin/
>>
>> Gj
>>
>> On Mon, Oct 7, 2019 at 9:11 PM Geertjan Wielenga 
>> <ge...@apache.org>
>> wrote:
>>
>>> Maybe this:
>>>
>>>
>>> https://stackoverflow.com/questions/54278159/javafx-11-in-netbeans-10-with-maven-has-no-sources-javadocs
>>>
>>> Gj
>>>
>>> On Mon, Oct 7, 2019 at 9:01 PM David Green <dg...@gmail.com> 
>>> wrote:
>>>
>>>> Thanks.
>>>>
>>>> Any on hints on generating Javadoc?
>>>>
>>>> Dave
>>>>
>>>> On 6 Oct 2019, at 8:59, Geertjan Wielenga wrote:
>>>>
>>>>> For debugging, this works:
>>>>>
>>>>>
>>>> https://stackoverflow.com/questions/56197372/i-cant-debug-an-application-using-netbeans-11-with-javafx-12
>>>>>
>>>>> Gj
>>>>>
>>>>>
>>>>> On Sun, Oct 6, 2019 at 7:05 AM Geertjan Wielenga 
>>>>> <ge...@apache.org>
>>>>> wrote:
>>>>>
>>>>>> However, take a look at Samples | OpenJFX in 11.1.
>>>>>>
>>>>>> Those two samples have the nbactions file that contains the debug
>>>>>> target
>>>>>> too.
>>>>>>
>>>>>> Gj
>>>>>>
>>>>>> On Sun, Oct 6, 2019 at 6:58 AM Geertjan Wielenga
>>>>>> <ge...@apache.org>
>>>>>> wrote:
>>>>>>
>>>>>>> Yes, that is my aim too, it will happen, probably not for 11.2.
>>>>>>>
>>>>>>> Gj
>>>>>>>
>>>>>>> On Sun, Oct 6, 2019 at 6:53 AM David Green <dg...@gmail.com>
>>>>>>> wrote:
>>>>>>>
>>>>>>>> Yes.
>>>>>>>>
>>>>>>>> That would be most useful.
>>>>>>>>
>>>>>>>> Long term, it would be nice to have this be set up when 
>>>>>>>> selecting a
>>>>>>>> project type.
>>>>>>>>
>>>>>>>> Thanks,
>>>>>>>>
>>>>>>>> Dave
>>>>>>>>
>>>>>>>> On 5 Oct 2019, at 23:35, Geertjan Wielenga wrote:
>>>>>>>>
>>>>>>>>> So, the project runs as described in:
>>>>>>>>> https://www.youtube.com/watch?v=8xaRwqcKPSI?
>>>>>>>>>
>>>>>>>>> You want another YouTube clip just like that showing how to 
>>>>>>>>> set up
>>>>>>>>> Debug
>>>>>>>>> and Javadoc goals in NetBeans?
>>>>>>>>>
>>>>>>>>> Gj
>>>>>>>>>
>>>>>>>>> On Sun, Oct 6, 2019 at 4:12 AM David Green 
>>>>>>>>> <dg...@gmail.com>
>>>>>>>>> wrote:
>>>>>>>>>
>>>>>>>>>> Using Netbeans 11.2.beta2 (although same issues seem to apply 
>>>>>>>>>> to
>>>>>>>>>> 11.1
>>>>>>>>>> release),
>>>>>>>>>>
>>>>>>>>>> Using the example from https://openjfx.io/openjfx-docs/ for
>>>>>>>>>> modules
>>>>>>>>>> with
>>>>>>>>>> Maven and NetBeans which is also highlighted in the video
>>>>>>>>>> https://www.youtube.com/watch?v=8xaRwqcKPSI&feature=youtu.be,
>>>>>>>>>> this
>>>>>>>>>> allows one to run code with openJavaFX quite nicely with Run
>>>>>>>>>> Project
>>>>>>>>>> but
>>>>>>>>>> Debug Project and Generate JavaDoc fail.
>>>>>>>>>>
>>>>>>>>>> It would be nice if these and perhaps a build image of some 
>>>>>>>>>> sort
>>>>>>>>>> were
>>>>>>>>>> automatically accomplishable by the base Maven pom.  It would
>>>>>>>>>> greatly
>>>>>>>>>> help folks start using NetBeans for new projects.
>>>>>>>>>>
>>>>>>>>>> I have found a variant of Mathew Dusome’s code
>>>>>>>>>> <
>>>>>>>>>>

Re: JavaFX needs some additional default support IMO

Posted by David Green <dg...@gmail.com>.
I am in this camp (of wanting to generate javadoc formatted pages.  I 
had been through these references (that you suggested — thanks 
though).

I have now discovered that javadoc:javadoc works (either within NetBeans 
or at the command line with Maven) if the module-info.java file does NOT 
exist but, of course, the rest of my build system wants it there to 
define the module.

(Perhaps unrelated but…) Looking at the old Jigsaw project it appears 
that the file structure included the module name as a directory entry 
right below source which is now visually there in the NetBeans IDE but 
the actual directory is src/main/java/….

Dave

On 7 Oct 2019, at 14:13, Geertjan Wielenga wrote:

> And also for generating your own, that's a Maven task:
>
> https://maven.apache.org/plugins/maven-javadoc-plugin/
>
> Gj
>
> On Mon, Oct 7, 2019 at 9:11 PM Geertjan Wielenga <ge...@apache.org>
> wrote:
>
>> Maybe this:
>>
>>
>> https://stackoverflow.com/questions/54278159/javafx-11-in-netbeans-10-with-maven-has-no-sources-javadocs
>>
>> Gj
>>
>> On Mon, Oct 7, 2019 at 9:01 PM David Green <dg...@gmail.com> 
>> wrote:
>>
>>> Thanks.
>>>
>>> Any on hints on generating Javadoc?
>>>
>>> Dave
>>>
>>> On 6 Oct 2019, at 8:59, Geertjan Wielenga wrote:
>>>
>>>> For debugging, this works:
>>>>
>>>>
>>> https://stackoverflow.com/questions/56197372/i-cant-debug-an-application-using-netbeans-11-with-javafx-12
>>>>
>>>> Gj
>>>>
>>>>
>>>> On Sun, Oct 6, 2019 at 7:05 AM Geertjan Wielenga 
>>>> <ge...@apache.org>
>>>> wrote:
>>>>
>>>>> However, take a look at Samples | OpenJFX in 11.1.
>>>>>
>>>>> Those two samples have the nbactions file that contains the debug
>>>>> target
>>>>> too.
>>>>>
>>>>> Gj
>>>>>
>>>>> On Sun, Oct 6, 2019 at 6:58 AM Geertjan Wielenga
>>>>> <ge...@apache.org>
>>>>> wrote:
>>>>>
>>>>>> Yes, that is my aim too, it will happen, probably not for 11.2.
>>>>>>
>>>>>> Gj
>>>>>>
>>>>>> On Sun, Oct 6, 2019 at 6:53 AM David Green <dg...@gmail.com>
>>>>>> wrote:
>>>>>>
>>>>>>> Yes.
>>>>>>>
>>>>>>> That would be most useful.
>>>>>>>
>>>>>>> Long term, it would be nice to have this be set up when 
>>>>>>> selecting a
>>>>>>> project type.
>>>>>>>
>>>>>>> Thanks,
>>>>>>>
>>>>>>> Dave
>>>>>>>
>>>>>>> On 5 Oct 2019, at 23:35, Geertjan Wielenga wrote:
>>>>>>>
>>>>>>>> So, the project runs as described in:
>>>>>>>> https://www.youtube.com/watch?v=8xaRwqcKPSI?
>>>>>>>>
>>>>>>>> You want another YouTube clip just like that showing how to set 
>>>>>>>> up
>>>>>>>> Debug
>>>>>>>> and Javadoc goals in NetBeans?
>>>>>>>>
>>>>>>>> Gj
>>>>>>>>
>>>>>>>> On Sun, Oct 6, 2019 at 4:12 AM David Green 
>>>>>>>> <dg...@gmail.com>
>>>>>>>> wrote:
>>>>>>>>
>>>>>>>>> Using Netbeans 11.2.beta2 (although same issues seem to apply 
>>>>>>>>> to
>>>>>>>>> 11.1
>>>>>>>>> release),
>>>>>>>>>
>>>>>>>>> Using the example from https://openjfx.io/openjfx-docs/ for
>>>>>>>>> modules
>>>>>>>>> with
>>>>>>>>> Maven and NetBeans which is also highlighted in the video
>>>>>>>>> https://www.youtube.com/watch?v=8xaRwqcKPSI&feature=youtu.be,
>>>>>>>>> this
>>>>>>>>> allows one to run code with openJavaFX quite nicely with Run
>>>>>>>>> Project
>>>>>>>>> but
>>>>>>>>> Debug Project and Generate JavaDoc fail.
>>>>>>>>>
>>>>>>>>> It would be nice if these and perhaps a build image of some 
>>>>>>>>> sort
>>>>>>>>> were
>>>>>>>>> automatically accomplishable by the base Maven pom.  It would
>>>>>>>>> greatly
>>>>>>>>> help folks start using NetBeans for new projects.
>>>>>>>>>
>>>>>>>>> I have found a variant of Mathew Dusome’s code
>>>>>>>>> <
>>>>>>>>>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
For additional commands, e-mail: dev-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists




Re: JavaFX needs some additional default support IMO

Posted by Geertjan Wielenga <ge...@apache.org>.
And also for generating your own, that's a Maven task:

https://maven.apache.org/plugins/maven-javadoc-plugin/

Gj

On Mon, Oct 7, 2019 at 9:11 PM Geertjan Wielenga <ge...@apache.org>
wrote:

> Maybe this:
>
>
> https://stackoverflow.com/questions/54278159/javafx-11-in-netbeans-10-with-maven-has-no-sources-javadocs
>
> Gj
>
> On Mon, Oct 7, 2019 at 9:01 PM David Green <dg...@gmail.com> wrote:
>
>> Thanks.
>>
>> Any on hints on generating Javadoc?
>>
>> Dave
>>
>> On 6 Oct 2019, at 8:59, Geertjan Wielenga wrote:
>>
>> > For debugging, this works:
>> >
>> >
>> https://stackoverflow.com/questions/56197372/i-cant-debug-an-application-using-netbeans-11-with-javafx-12
>> >
>> > Gj
>> >
>> >
>> > On Sun, Oct 6, 2019 at 7:05 AM Geertjan Wielenga <ge...@apache.org>
>> > wrote:
>> >
>> >> However, take a look at Samples | OpenJFX in 11.1.
>> >>
>> >> Those two samples have the nbactions file that contains the debug
>> >> target
>> >> too.
>> >>
>> >> Gj
>> >>
>> >> On Sun, Oct 6, 2019 at 6:58 AM Geertjan Wielenga
>> >> <ge...@apache.org>
>> >> wrote:
>> >>
>> >>> Yes, that is my aim too, it will happen, probably not for 11.2.
>> >>>
>> >>> Gj
>> >>>
>> >>> On Sun, Oct 6, 2019 at 6:53 AM David Green <dg...@gmail.com>
>> >>> wrote:
>> >>>
>> >>>> Yes.
>> >>>>
>> >>>> That would be most useful.
>> >>>>
>> >>>> Long term, it would be nice to have this be set up when selecting a
>> >>>> project type.
>> >>>>
>> >>>> Thanks,
>> >>>>
>> >>>> Dave
>> >>>>
>> >>>> On 5 Oct 2019, at 23:35, Geertjan Wielenga wrote:
>> >>>>
>> >>>>> So, the project runs as described in:
>> >>>>> https://www.youtube.com/watch?v=8xaRwqcKPSI?
>> >>>>>
>> >>>>> You want another YouTube clip just like that showing how to set up
>> >>>>> Debug
>> >>>>> and Javadoc goals in NetBeans?
>> >>>>>
>> >>>>> Gj
>> >>>>>
>> >>>>> On Sun, Oct 6, 2019 at 4:12 AM David Green <dg...@gmail.com>
>> >>>>> wrote:
>> >>>>>
>> >>>>>> Using Netbeans 11.2.beta2 (although same issues seem to apply to
>> >>>>>> 11.1
>> >>>>>> release),
>> >>>>>>
>> >>>>>> Using the example from https://openjfx.io/openjfx-docs/ for
>> >>>>>> modules
>> >>>>>> with
>> >>>>>> Maven and NetBeans which is also highlighted in the video
>> >>>>>> https://www.youtube.com/watch?v=8xaRwqcKPSI&feature=youtu.be,
>> >>>>>> this
>> >>>>>> allows one to run code with openJavaFX quite nicely with Run
>> >>>>>> Project
>> >>>>>> but
>> >>>>>> Debug Project and Generate JavaDoc fail.
>> >>>>>>
>> >>>>>> It would be nice if these and perhaps a build image of some sort
>> >>>>>> were
>> >>>>>> automatically accomplishable by the base Maven pom.  It would
>> >>>>>> greatly
>> >>>>>> help folks start using NetBeans for new projects.
>> >>>>>>
>> >>>>>> I have found a variant of Mathew Dusome’s code
>> >>>>>> <
>> >>>>>>
>> >>>>
>> http://mail-archives.apache.org/mod_mbox/netbeans-users/201811.mbox/%3c017501d484e0$c7aad770$57008650$@dsolutions.ca%3e
>> >>>>>
>> >>>>>>
>> >>>>>>   to work for everything but the Javadoc although I ran into a
>> >>>>>> few
>> >>>>>> issues.
>> >>>>>>
>> >>>>>> Dave
>> >>>>>>
>> >>>>>>
>> ---------------------------------------------------------------------
>> >>>>>> To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
>> >>>>>> For additional commands, e-mail: dev-help@netbeans.apache.org
>> >>>>>>
>> >>>>>> For further information about the NetBeans mailing lists, visit:
>> >>>>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>> >>>>>>
>> >>>>>>
>> >>>>>>
>> >>>>>>
>> >>>>
>> >>>> ---------------------------------------------------------------------
>> >>>> To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
>> >>>> For additional commands, e-mail: dev-help@netbeans.apache.org
>> >>>>
>> >>>> For further information about the NetBeans mailing lists, visit:
>> >>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>> >>>>
>> >>>>
>> >>>>
>> >>>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
>> For additional commands, e-mail: dev-help@netbeans.apache.org
>>
>> For further information about the NetBeans mailing lists, visit:
>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>
>>
>>
>>

Re: JavaFX needs some additional default support IMO

Posted by Geertjan Wielenga <ge...@apache.org>.
Maybe this:

https://stackoverflow.com/questions/54278159/javafx-11-in-netbeans-10-with-maven-has-no-sources-javadocs

Gj

On Mon, Oct 7, 2019 at 9:01 PM David Green <dg...@gmail.com> wrote:

> Thanks.
>
> Any on hints on generating Javadoc?
>
> Dave
>
> On 6 Oct 2019, at 8:59, Geertjan Wielenga wrote:
>
> > For debugging, this works:
> >
> >
> https://stackoverflow.com/questions/56197372/i-cant-debug-an-application-using-netbeans-11-with-javafx-12
> >
> > Gj
> >
> >
> > On Sun, Oct 6, 2019 at 7:05 AM Geertjan Wielenga <ge...@apache.org>
> > wrote:
> >
> >> However, take a look at Samples | OpenJFX in 11.1.
> >>
> >> Those two samples have the nbactions file that contains the debug
> >> target
> >> too.
> >>
> >> Gj
> >>
> >> On Sun, Oct 6, 2019 at 6:58 AM Geertjan Wielenga
> >> <ge...@apache.org>
> >> wrote:
> >>
> >>> Yes, that is my aim too, it will happen, probably not for 11.2.
> >>>
> >>> Gj
> >>>
> >>> On Sun, Oct 6, 2019 at 6:53 AM David Green <dg...@gmail.com>
> >>> wrote:
> >>>
> >>>> Yes.
> >>>>
> >>>> That would be most useful.
> >>>>
> >>>> Long term, it would be nice to have this be set up when selecting a
> >>>> project type.
> >>>>
> >>>> Thanks,
> >>>>
> >>>> Dave
> >>>>
> >>>> On 5 Oct 2019, at 23:35, Geertjan Wielenga wrote:
> >>>>
> >>>>> So, the project runs as described in:
> >>>>> https://www.youtube.com/watch?v=8xaRwqcKPSI?
> >>>>>
> >>>>> You want another YouTube clip just like that showing how to set up
> >>>>> Debug
> >>>>> and Javadoc goals in NetBeans?
> >>>>>
> >>>>> Gj
> >>>>>
> >>>>> On Sun, Oct 6, 2019 at 4:12 AM David Green <dg...@gmail.com>
> >>>>> wrote:
> >>>>>
> >>>>>> Using Netbeans 11.2.beta2 (although same issues seem to apply to
> >>>>>> 11.1
> >>>>>> release),
> >>>>>>
> >>>>>> Using the example from https://openjfx.io/openjfx-docs/ for
> >>>>>> modules
> >>>>>> with
> >>>>>> Maven and NetBeans which is also highlighted in the video
> >>>>>> https://www.youtube.com/watch?v=8xaRwqcKPSI&feature=youtu.be,
> >>>>>> this
> >>>>>> allows one to run code with openJavaFX quite nicely with Run
> >>>>>> Project
> >>>>>> but
> >>>>>> Debug Project and Generate JavaDoc fail.
> >>>>>>
> >>>>>> It would be nice if these and perhaps a build image of some sort
> >>>>>> were
> >>>>>> automatically accomplishable by the base Maven pom.  It would
> >>>>>> greatly
> >>>>>> help folks start using NetBeans for new projects.
> >>>>>>
> >>>>>> I have found a variant of Mathew Dusome’s code
> >>>>>> <
> >>>>>>
> >>>>
> http://mail-archives.apache.org/mod_mbox/netbeans-users/201811.mbox/%3c017501d484e0$c7aad770$57008650$@dsolutions.ca%3e
> >>>>>
> >>>>>>
> >>>>>>   to work for everything but the Javadoc although I ran into a
> >>>>>> few
> >>>>>> issues.
> >>>>>>
> >>>>>> Dave
> >>>>>>
> >>>>>>
> ---------------------------------------------------------------------
> >>>>>> To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
> >>>>>> For additional commands, e-mail: dev-help@netbeans.apache.org
> >>>>>>
> >>>>>> For further information about the NetBeans mailing lists, visit:
> >>>>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>
> >>>> ---------------------------------------------------------------------
> >>>> To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
> >>>> For additional commands, e-mail: dev-help@netbeans.apache.org
> >>>>
> >>>> For further information about the NetBeans mailing lists, visit:
> >>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
> >>>>
> >>>>
> >>>>
> >>>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
> For additional commands, e-mail: dev-help@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>
>
>

Re: JavaFX needs some additional default support IMO

Posted by David Green <dg...@gmail.com>.
Thanks.

Any on hints on generating Javadoc?

Dave

On 6 Oct 2019, at 8:59, Geertjan Wielenga wrote:

> For debugging, this works:
>
> https://stackoverflow.com/questions/56197372/i-cant-debug-an-application-using-netbeans-11-with-javafx-12
>
> Gj
>
>
> On Sun, Oct 6, 2019 at 7:05 AM Geertjan Wielenga <ge...@apache.org>
> wrote:
>
>> However, take a look at Samples | OpenJFX in 11.1.
>>
>> Those two samples have the nbactions file that contains the debug 
>> target
>> too.
>>
>> Gj
>>
>> On Sun, Oct 6, 2019 at 6:58 AM Geertjan Wielenga 
>> <ge...@apache.org>
>> wrote:
>>
>>> Yes, that is my aim too, it will happen, probably not for 11.2.
>>>
>>> Gj
>>>
>>> On Sun, Oct 6, 2019 at 6:53 AM David Green <dg...@gmail.com> 
>>> wrote:
>>>
>>>> Yes.
>>>>
>>>> That would be most useful.
>>>>
>>>> Long term, it would be nice to have this be set up when selecting a
>>>> project type.
>>>>
>>>> Thanks,
>>>>
>>>> Dave
>>>>
>>>> On 5 Oct 2019, at 23:35, Geertjan Wielenga wrote:
>>>>
>>>>> So, the project runs as described in:
>>>>> https://www.youtube.com/watch?v=8xaRwqcKPSI?
>>>>>
>>>>> You want another YouTube clip just like that showing how to set up
>>>>> Debug
>>>>> and Javadoc goals in NetBeans?
>>>>>
>>>>> Gj
>>>>>
>>>>> On Sun, Oct 6, 2019 at 4:12 AM David Green <dg...@gmail.com>
>>>>> wrote:
>>>>>
>>>>>> Using Netbeans 11.2.beta2 (although same issues seem to apply to 
>>>>>> 11.1
>>>>>> release),
>>>>>>
>>>>>> Using the example from https://openjfx.io/openjfx-docs/ for 
>>>>>> modules
>>>>>> with
>>>>>> Maven and NetBeans which is also highlighted in the video
>>>>>> https://www.youtube.com/watch?v=8xaRwqcKPSI&feature=youtu.be, 
>>>>>> this
>>>>>> allows one to run code with openJavaFX quite nicely with Run 
>>>>>> Project
>>>>>> but
>>>>>> Debug Project and Generate JavaDoc fail.
>>>>>>
>>>>>> It would be nice if these and perhaps a build image of some sort 
>>>>>> were
>>>>>> automatically accomplishable by the base Maven pom.  It would 
>>>>>> greatly
>>>>>> help folks start using NetBeans for new projects.
>>>>>>
>>>>>> I have found a variant of Mathew Dusome’s code
>>>>>> <
>>>>>>
>>>> http://mail-archives.apache.org/mod_mbox/netbeans-users/201811.mbox/%3c017501d484e0$c7aad770$57008650$@dsolutions.ca%3e
>>>>>
>>>>>>
>>>>>>   to work for everything but the Javadoc although I ran into a 
>>>>>> few
>>>>>> issues.
>>>>>>
>>>>>> Dave
>>>>>>
>>>>>> ---------------------------------------------------------------------
>>>>>> To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
>>>>>> For additional commands, e-mail: dev-help@netbeans.apache.org
>>>>>>
>>>>>> For further information about the NetBeans mailing lists, visit:
>>>>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
>>>> For additional commands, e-mail: dev-help@netbeans.apache.org
>>>>
>>>> For further information about the NetBeans mailing lists, visit:
>>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>>>
>>>>
>>>>
>>>>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
For additional commands, e-mail: dev-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists




Re: JavaFX needs some additional default support IMO

Posted by Geertjan Wielenga <ge...@apache.org>.
For debugging, this works:

https://stackoverflow.com/questions/56197372/i-cant-debug-an-application-using-netbeans-11-with-javafx-12

Gj


On Sun, Oct 6, 2019 at 7:05 AM Geertjan Wielenga <ge...@apache.org>
wrote:

> However, take a look at Samples | OpenJFX in 11.1.
>
> Those two samples have the nbactions file that contains the debug target
> too.
>
> Gj
>
> On Sun, Oct 6, 2019 at 6:58 AM Geertjan Wielenga <ge...@apache.org>
> wrote:
>
>> Yes, that is my aim too, it will happen, probably not for 11.2.
>>
>> Gj
>>
>> On Sun, Oct 6, 2019 at 6:53 AM David Green <dg...@gmail.com> wrote:
>>
>>> Yes.
>>>
>>> That would be most useful.
>>>
>>> Long term, it would be nice to have this be set up when selecting a
>>> project type.
>>>
>>> Thanks,
>>>
>>> Dave
>>>
>>> On 5 Oct 2019, at 23:35, Geertjan Wielenga wrote:
>>>
>>> > So, the project runs as described in:
>>> > https://www.youtube.com/watch?v=8xaRwqcKPSI?
>>> >
>>> > You want another YouTube clip just like that showing how to set up
>>> > Debug
>>> > and Javadoc goals in NetBeans?
>>> >
>>> > Gj
>>> >
>>> > On Sun, Oct 6, 2019 at 4:12 AM David Green <dg...@gmail.com>
>>> > wrote:
>>> >
>>> >> Using Netbeans 11.2.beta2 (although same issues seem to apply to 11.1
>>> >> release),
>>> >>
>>> >> Using the example from https://openjfx.io/openjfx-docs/ for modules
>>> >> with
>>> >> Maven and NetBeans which is also highlighted in the video
>>> >> https://www.youtube.com/watch?v=8xaRwqcKPSI&feature=youtu.be, this
>>> >> allows one to run code with openJavaFX quite nicely with Run Project
>>> >> but
>>> >> Debug Project and Generate JavaDoc fail.
>>> >>
>>> >> It would be nice if these and perhaps a build image of some sort were
>>> >> automatically accomplishable by the base Maven pom.  It would greatly
>>> >> help folks start using NetBeans for new projects.
>>> >>
>>> >> I have found a variant of Mathew Dusome’s code
>>> >> <
>>> >>
>>> http://mail-archives.apache.org/mod_mbox/netbeans-users/201811.mbox/%3c017501d484e0$c7aad770$57008650$@dsolutions.ca%3e
>>> >
>>> >>
>>> >>   to work for everything but the Javadoc although I ran into a few
>>> >> issues.
>>> >>
>>> >> Dave
>>> >>
>>> >> ---------------------------------------------------------------------
>>> >> To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
>>> >> For additional commands, e-mail: dev-help@netbeans.apache.org
>>> >>
>>> >> For further information about the NetBeans mailing lists, visit:
>>> >> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>> >>
>>> >>
>>> >>
>>> >>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
>>> For additional commands, e-mail: dev-help@netbeans.apache.org
>>>
>>> For further information about the NetBeans mailing lists, visit:
>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>>
>>>
>>>
>>>

Re: JavaFX needs some additional default support IMO

Posted by Geertjan Wielenga <ge...@apache.org>.
However, take a look at Samples | OpenJFX in 11.1.

Those two samples have the nbactions file that contains the debug target
too.

Gj

On Sun, Oct 6, 2019 at 6:58 AM Geertjan Wielenga <ge...@apache.org>
wrote:

> Yes, that is my aim too, it will happen, probably not for 11.2.
>
> Gj
>
> On Sun, Oct 6, 2019 at 6:53 AM David Green <dg...@gmail.com> wrote:
>
>> Yes.
>>
>> That would be most useful.
>>
>> Long term, it would be nice to have this be set up when selecting a
>> project type.
>>
>> Thanks,
>>
>> Dave
>>
>> On 5 Oct 2019, at 23:35, Geertjan Wielenga wrote:
>>
>> > So, the project runs as described in:
>> > https://www.youtube.com/watch?v=8xaRwqcKPSI?
>> >
>> > You want another YouTube clip just like that showing how to set up
>> > Debug
>> > and Javadoc goals in NetBeans?
>> >
>> > Gj
>> >
>> > On Sun, Oct 6, 2019 at 4:12 AM David Green <dg...@gmail.com>
>> > wrote:
>> >
>> >> Using Netbeans 11.2.beta2 (although same issues seem to apply to 11.1
>> >> release),
>> >>
>> >> Using the example from https://openjfx.io/openjfx-docs/ for modules
>> >> with
>> >> Maven and NetBeans which is also highlighted in the video
>> >> https://www.youtube.com/watch?v=8xaRwqcKPSI&feature=youtu.be, this
>> >> allows one to run code with openJavaFX quite nicely with Run Project
>> >> but
>> >> Debug Project and Generate JavaDoc fail.
>> >>
>> >> It would be nice if these and perhaps a build image of some sort were
>> >> automatically accomplishable by the base Maven pom.  It would greatly
>> >> help folks start using NetBeans for new projects.
>> >>
>> >> I have found a variant of Mathew Dusome’s code
>> >> <
>> >>
>> http://mail-archives.apache.org/mod_mbox/netbeans-users/201811.mbox/%3c017501d484e0$c7aad770$57008650$@dsolutions.ca%3e
>> >
>> >>
>> >>   to work for everything but the Javadoc although I ran into a few
>> >> issues.
>> >>
>> >> Dave
>> >>
>> >> ---------------------------------------------------------------------
>> >> To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
>> >> For additional commands, e-mail: dev-help@netbeans.apache.org
>> >>
>> >> For further information about the NetBeans mailing lists, visit:
>> >> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>> >>
>> >>
>> >>
>> >>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
>> For additional commands, e-mail: dev-help@netbeans.apache.org
>>
>> For further information about the NetBeans mailing lists, visit:
>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>
>>
>>
>>

Re: JavaFX needs some additional default support IMO

Posted by Geertjan Wielenga <ge...@apache.org>.
Yes, that is my aim too, it will happen, probably not for 11.2.

Gj

On Sun, Oct 6, 2019 at 6:53 AM David Green <dg...@gmail.com> wrote:

> Yes.
>
> That would be most useful.
>
> Long term, it would be nice to have this be set up when selecting a
> project type.
>
> Thanks,
>
> Dave
>
> On 5 Oct 2019, at 23:35, Geertjan Wielenga wrote:
>
> > So, the project runs as described in:
> > https://www.youtube.com/watch?v=8xaRwqcKPSI?
> >
> > You want another YouTube clip just like that showing how to set up
> > Debug
> > and Javadoc goals in NetBeans?
> >
> > Gj
> >
> > On Sun, Oct 6, 2019 at 4:12 AM David Green <dg...@gmail.com>
> > wrote:
> >
> >> Using Netbeans 11.2.beta2 (although same issues seem to apply to 11.1
> >> release),
> >>
> >> Using the example from https://openjfx.io/openjfx-docs/ for modules
> >> with
> >> Maven and NetBeans which is also highlighted in the video
> >> https://www.youtube.com/watch?v=8xaRwqcKPSI&feature=youtu.be, this
> >> allows one to run code with openJavaFX quite nicely with Run Project
> >> but
> >> Debug Project and Generate JavaDoc fail.
> >>
> >> It would be nice if these and perhaps a build image of some sort were
> >> automatically accomplishable by the base Maven pom.  It would greatly
> >> help folks start using NetBeans for new projects.
> >>
> >> I have found a variant of Mathew Dusome’s code
> >> <
> >>
> http://mail-archives.apache.org/mod_mbox/netbeans-users/201811.mbox/%3c017501d484e0$c7aad770$57008650$@dsolutions.ca%3e
> >
> >>
> >>   to work for everything but the Javadoc although I ran into a few
> >> issues.
> >>
> >> Dave
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
> >> For additional commands, e-mail: dev-help@netbeans.apache.org
> >>
> >> For further information about the NetBeans mailing lists, visit:
> >> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
> >>
> >>
> >>
> >>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
> For additional commands, e-mail: dev-help@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>
>
>

Re: JavaFX needs some additional default support IMO

Posted by David Green <dg...@gmail.com>.
Yes.

That would be most useful.

Long term, it would be nice to have this be set up when selecting a 
project type.

Thanks,

Dave

On 5 Oct 2019, at 23:35, Geertjan Wielenga wrote:

> So, the project runs as described in:
> https://www.youtube.com/watch?v=8xaRwqcKPSI?
>
> You want another YouTube clip just like that showing how to set up 
> Debug
> and Javadoc goals in NetBeans?
>
> Gj
>
> On Sun, Oct 6, 2019 at 4:12 AM David Green <dg...@gmail.com> 
> wrote:
>
>> Using Netbeans 11.2.beta2 (although same issues seem to apply to 11.1
>> release),
>>
>> Using the example from https://openjfx.io/openjfx-docs/ for modules 
>> with
>> Maven and NetBeans which is also highlighted in the video
>> https://www.youtube.com/watch?v=8xaRwqcKPSI&feature=youtu.be, this
>> allows one to run code with openJavaFX quite nicely with Run Project 
>> but
>> Debug Project and Generate JavaDoc fail.
>>
>> It would be nice if these and perhaps a build image of some sort were
>> automatically accomplishable by the base Maven pom.  It would greatly
>> help folks start using NetBeans for new projects.
>>
>> I have found a variant of Mathew Dusome’s code
>> <
>> http://mail-archives.apache.org/mod_mbox/netbeans-users/201811.mbox/%3c017501d484e0$c7aad770$57008650$@dsolutions.ca%3e>
>>
>>   to work for everything but the Javadoc although I ran into a few
>> issues.
>>
>> Dave
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
>> For additional commands, e-mail: dev-help@netbeans.apache.org
>>
>> For further information about the NetBeans mailing lists, visit:
>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>
>>
>>
>>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
For additional commands, e-mail: dev-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists




Re: JavaFX needs some additional default support IMO

Posted by Geertjan Wielenga <ge...@apache.org>.
And I completely agree with you -- the nbactions file should be included
out of the box when the JavaFX Gluon archetypes are created.

Gj

On Sun, Oct 6, 2019 at 6:35 AM Geertjan Wielenga <ge...@apache.org>
wrote:

> So, the project runs as described in:
> https://www.youtube.com/watch?v=8xaRwqcKPSI?
>
> You want another YouTube clip just like that showing how to set up Debug
> and Javadoc goals in NetBeans?
>
> Gj
>
> On Sun, Oct 6, 2019 at 4:12 AM David Green <dg...@gmail.com> wrote:
>
>> Using Netbeans 11.2.beta2 (although same issues seem to apply to 11.1
>> release),
>>
>> Using the example from https://openjfx.io/openjfx-docs/ for modules with
>> Maven and NetBeans which is also highlighted in the video
>> https://www.youtube.com/watch?v=8xaRwqcKPSI&feature=youtu.be, this
>> allows one to run code with openJavaFX quite nicely with Run Project but
>> Debug Project and Generate JavaDoc fail.
>>
>> It would be nice if these and perhaps a build image of some sort were
>> automatically accomplishable by the base Maven pom.  It would greatly
>> help folks start using NetBeans for new projects.
>>
>> I have found a variant of Mathew Dusome’s code
>> <
>> http://mail-archives.apache.org/mod_mbox/netbeans-users/201811.mbox/%3c017501d484e0$c7aad770$57008650$@dsolutions.ca%3e>
>>
>>   to work for everything but the Javadoc although I ran into a few
>> issues.
>>
>> Dave
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
>> For additional commands, e-mail: dev-help@netbeans.apache.org
>>
>> For further information about the NetBeans mailing lists, visit:
>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>
>>
>>
>>

Re: JavaFX needs some additional default support IMO

Posted by Geertjan Wielenga <ge...@apache.org>.
So, the project runs as described in:
https://www.youtube.com/watch?v=8xaRwqcKPSI?

You want another YouTube clip just like that showing how to set up Debug
and Javadoc goals in NetBeans?

Gj

On Sun, Oct 6, 2019 at 4:12 AM David Green <dg...@gmail.com> wrote:

> Using Netbeans 11.2.beta2 (although same issues seem to apply to 11.1
> release),
>
> Using the example from https://openjfx.io/openjfx-docs/ for modules with
> Maven and NetBeans which is also highlighted in the video
> https://www.youtube.com/watch?v=8xaRwqcKPSI&feature=youtu.be, this
> allows one to run code with openJavaFX quite nicely with Run Project but
> Debug Project and Generate JavaDoc fail.
>
> It would be nice if these and perhaps a build image of some sort were
> automatically accomplishable by the base Maven pom.  It would greatly
> help folks start using NetBeans for new projects.
>
> I have found a variant of Mathew Dusome’s code
> <
> http://mail-archives.apache.org/mod_mbox/netbeans-users/201811.mbox/%3c017501d484e0$c7aad770$57008650$@dsolutions.ca%3e>
>
>   to work for everything but the Javadoc although I ran into a few
> issues.
>
> Dave
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@netbeans.apache.org
> For additional commands, e-mail: dev-help@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>
>
>