Re: Java 9+ is the module-info wizard too rigorous?

2019-05-08 Thread Geertjan Wielenga
Excellent, thanks for your support and enthusiasm, and keep your comments
(and issues) coming.

Gj


On Thu, 9 May 2019 at 08:28, Alten, Jessica-Aileen <
jessica-aileen.al...@leibniz-liag.de> wrote:

> I don't know. I will have to build Netbeans and understand how Netbeans
> works, where the unit tests are, etc. I've never done that before.  I've
> also just started working with the Java module system!
>
> The bug is documented in JIRA:
> https://issues.apache.org/jira/browse/NETBEANS-2519
>
>
>
> Kind regards,
>
> Jessica
>
> *From:* Geertjan Wielenga 
> *Sent:* Thursday, May 9, 2019 5:40 AM
> *To:* Alten, Jessica-Aileen 
> *Cc:* users@netbeans.apache.org
> *Subject:* Re: Java 9+ is the module-info wizard too rigorous?
>
>
>
> Thanks a lot for this great analysis and welcome to the NetBeans community.
>
>
>
> I think the main problem here is that I don't think there's anyone who is
> very knowledgeable about this part of the code.
>
>
>
> Do you expect that a lot of code will need to be changed to fix this or is
> this a simple change or tweak that's needed somewhere specific?
>
>
>
> Thanks,
>
>
>
> Gj
>
>
>
> On Mon, May 6, 2019 at 2:13 PM Alten, Jessica-Aileen <
> jessica-aileen.al...@leibniz-liag.de> wrote:
>
> Hi,
>
> I am quite new to the JDK 9+ module system but I think I found a bug in the
> Netbeans module-info wizard (only tested with Netbeans 11). The problem is
> the code generation for automatic modules, which seems too rigorous. In my
> case, it is a maven project, but that does not matter, the Netbeans build
> mechanism produces the same result.
>
> Example: Using the jdom2-2.0.6.jar leads to this code
>
> module mymodulename {
> requires jdom;
> }
>
> Netbeans is fine with this, no errors, code completion works, but compiling
> the code gives a compilation error:
> ... module not found: jdom
>
> Changing "requires jdom" to "requires jdom2", in module-info.java results
> in
> lots of red error badges in module-info.java and other classes, code
> completion does not work and import statement says, "package
> org.jdom2.input
> is declared in module jdom, but module mymodulename does not read it."
>
>  But this works! Compilation is ok and the the class using the jdom2
> package
> is working fine!
>
> Calling "jar --describe-module --file=jdom2-2.0.6.jar" gives:
>
> jdom2@2.0.6 automatic
> requires java.base mandated
> contains org.jdom2
> contains org.jdom2.adapters
> contains org.jdom2.filter
> contains org.jdom2.input
> contains org.jdom2.input.sax
> contains org.jdom2.input.stax
> contains org.jdom2.internal
> contains org.jdom2.located
> contains org.jdom2.output
> contains org.jdom2.output.support
> contains org.jdom2.transform
> contains org.jdom2.util
> contains org.jdom2.xpath
> contains org.jdom2.xpath.jaxen
> contains org.jdom2.xpath.util
>
> I read some articles about the module mechanism of JDK 9+ especially about
> automatic modules and know that name generation for automatic modules
> truncates the version string part, in this case that would be "-2.0.6" but
> not "2-2.0.6", "2" is a distinctive feature not a version string. I think
> the Netbeans wizard is doing too much here. Would you confirm this?
>
> I know about the workarounds, i.e. modifying META-INF/MANIFEST.MF in the
> jar
> file and I know that this library should be updated for JDK 9+, but I think
> Netbeans should behave like the --describe-module result.
> Or did I misunderstand something fundamentally?
>
> Kind regards,
> Jessica
>
>
>


Re: Question on Netbeans 11 and C++

2019-05-08 Thread Geertjan Wielenga
Well, you can use Java EE 8, right now, today. Just use a Maven archetype
that has the POM configured correctly, e.g., look for the AirHacks
archetypes by Adam Bien, search for them in the Maven project from
Archetype wizard in the New Project dialog.

At the same time, Josh Juneau is working on tweaking several modules
related to Java EE support specifically for Java EE 8, please join the
Apache NetBeans dev mailing list, he’d be very happy to hear of your
interest and feedback and requirements (now is the time to hear what they
are, not after he pushes his changes).

Note too that the Payara team plans to contribute support for Payara to
Apache NetBeans in time for the next release, scheduled for June.

Also be aware of the ongoing discussions re Java EE and Jakarta EE and the
Eclipse Foundation, etc. Too complex to summarize here, best if you do a
search for that on-line.

Thanks,

Gj


On Thu, 9 May 2019 at 07:41, Richard Grin 
wrote:

> When is Java EE *8* scheduled ? I cannot see it in the link.
>
> Thanks
>
> Richard
>
>
>
> Envoyé depuis mon smartphone Samsung Galaxy.
>
>
>  Message d'origine 
> De : Geertjan Wielenga 
> Date : 09/05/2019 05:07 (GMT+01:00)
> À : Emilian Bold 
> Cc : Koos du Preez , NetBeans Mailing <
> users@netbeans.apache.org>
> Objet : Re: Question on Netbeans 11 and C++
>
> Here's the roadmap, C/C++ inclusion is scheduled for September:
>
>
> https://cwiki.apache.org/confluence/display/NETBEANS/Apache+NetBeans+Release+Roadmap
>
> Thanks,
>
> Gj
>
> On Thu, May 9, 2019 at 12:56 AM Emilian Bold 
> wrote:
>
>> > 1 Does NB11 also include C++ projects (I only saw Java, PHP and couple
>> other web based types)
>>
>> No. I suspect the next release will include the C++ projects.
>>
>> In the meantime you can try CoolBeans ( https://coolbeans.xyz ) which
>> does compile the C++ modules.
>>
>> > 3 Does NB11 support C++17 ?
>>
>> I suspect not entirely... but only because a low level library I know
>> related to the clang frontend is from Oct 2017 while C++17 seems to
>> have been finalized in 2018.
>>
>> Would be interested about your feedback.
>>
>> --emi
>>
>> On Wed, May 8, 2019 at 10:22 PM Koos du Preez
>>  wrote:
>> >
>> > We are using Netbeans 8.2 extensively for cross platform C++
>> development and I was curious with Netbeans 11 release, I have the
>> following questions
>> >
>> > 1 Does NB11 also include C++ projects (I only saw Java, PHP and couple
>> other web based types)
>> >
>> > 2 Can you upgrade NB8.2 projects to NB11 ?
>> >
>> > 3 Does NB11 support C++17 ?
>> >
>> >
>> > Thanks!
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
>> For additional commands, e-mail: users-h...@netbeans.apache.org
>>
>> For further information about the NetBeans mailing lists, visit:
>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>
>>


Re: How to test a NetBeans Platform app? NbTestCase classpath woes

2019-05-08 Thread Emilian Bold
Indeed, the java.class.path is much larger for tests.

--emi

On Fri, Apr 26, 2019 at 10:24 PM Emilian Bold  wrote:
>
> One trick I learned is that .clusters() is applied only to the cluster
> folder name, not the full path.
>
> This was kinda obvious really, but since the current suite has the
> cluster under build/cluster I assumed it might be the full path. But
> no, your regexp has to also match 'cluster'.
>
> This doesn't solve the classpath problem mentioned initially...
>
> --emi
>
> On Thu, Apr 25, 2019 at 11:16 AM Emilian Bold  wrote:
> >
> > Hello,
> >
> > I'm trying to introduce NbTestCase into a large existing app and I'm
> > getting all kinds of what seem to be class-loader/classpath problems.
> >
> > The whole NbModuleSuite.Configuration is quite limited in what it does
> > and I can't seem to find any combination of settings that starts the
> > application properly.
> >
> > The code uses some libraries that read "JAI (Java Advanced Imaging)
> > registry files" inside META-INF/registryFile.jai and also some
> > java.util.ServiceLoader.
> >
> > It seems that no matter how I run the configuration:
> > * with hand-picked clusters or just .clusters(".*") or
> > * with hand-picked enableModules or just ".*" or
> > * enableClasspathModules(false)
> >
> > ... I get some duplicated entries in the classpath.
> >
> > Then I get a warning like:
> >
> > > Error while parsing JAI registry file 
> > > "file:/home/nasa/DSCOVR/SecretLunarBase/release/modules/ext/some.jar"
> >
> > But that release/modules/ext folder is *not* supposed to be in the
> > classpath as I already have the same JAR in the suite build/cluster/
> > folder (which folder is shown at app startup under `Installation=`).
> >
> > So, is there a way to configure NbTestCase so 'it just works'? I don't
> > want any fewer modules, I just want the application to start normally,
> > then execute
> > my test, without breaking the classpath in ways that are
> > test-specific.
> >
> > Regards,
> >
> >
> > --emi

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

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



RE: Java 9+ is the module-info wizard too rigorous?

2019-05-08 Thread Alten, Jessica-Aileen
I don't know. I will have to build Netbeans and understand how Netbeans works, 
where the unit tests are, etc. I've never done that before.  I've also just 
started working with the Java module system!

The bug is documented in JIRA: 
https://issues.apache.org/jira/browse/NETBEANS-2519



Kind regards,

Jessica

From: Geertjan Wielenga 
Sent: Thursday, May 9, 2019 5:40 AM
To: Alten, Jessica-Aileen 
Cc: users@netbeans.apache.org
Subject: Re: Java 9+ is the module-info wizard too rigorous?



Thanks a lot for this great analysis and welcome to the NetBeans community.



I think the main problem here is that I don't think there's anyone who is very 
knowledgeable about this part of the code.



Do you expect that a lot of code will need to be changed to fix this or is 
this a simple change or tweak that's needed somewhere specific?



Thanks,



Gj



On Mon, May 6, 2019 at 2:13 PM Alten, Jessica-Aileen 
mailto:jessica-aileen.al...@leibniz-liag.de> > wrote:

Hi,

I am quite new to the JDK 9+ module system but I think I found a bug in the
Netbeans module-info wizard (only tested with Netbeans 11). The problem is
the code generation for automatic modules, which seems too rigorous. In my
case, it is a maven project, but that does not matter, the Netbeans build
mechanism produces the same result.

Example: Using the jdom2-2.0.6.jar leads to this code

module mymodulename {
requires jdom;
}

Netbeans is fine with this, no errors, code completion works, but compiling
the code gives a compilation error:
... module not found: jdom

Changing "requires jdom" to "requires jdom2", in module-info.java results in
lots of red error badges in module-info.java and other classes, code
completion does not work and import statement says, "package org.jdom2.input
is declared in module jdom, but module mymodulename does not read it."

 But this works! Compilation is ok and the the class using the jdom2 package
is working fine!

Calling "jar --describe-module --file=jdom2-2.0.6.jar" gives:

jdom2@2.0.6   automatic
requires java.base mandated
contains org.jdom2
contains org.jdom2.adapters
contains org.jdom2.filter
contains org.jdom2.input
contains org.jdom2.input.sax
contains org.jdom2.input.stax
contains org.jdom2.internal
contains org.jdom2.located
contains org.jdom2.output
contains org.jdom2.output.support
contains org.jdom2.transform
contains org.jdom2.util
contains org.jdom2.xpath
contains org.jdom2.xpath.jaxen
contains org.jdom2.xpath.util

I read some articles about the module mechanism of JDK 9+ especially about
automatic modules and know that name generation for automatic modules
truncates the version string part, in this case that would be "-2.0.6" but
not "2-2.0.6", "2" is a distinctive feature not a version string. I think
the Netbeans wizard is doing too much here. Would you confirm this?

I know about the workarounds, i.e. modifying META-INF/MANIFEST.MF in the jar
file and I know that this library should be updated for JDK 9+, but I think
Netbeans should behave like the --describe-module result.
Or did I misunderstand something fundamentally?

Kind regards,
Jessica






smime.p7s
Description: S/MIME cryptographic signature


Re: Question on Netbeans 11 and C++

2019-05-08 Thread Richard Grin
When is Java EE *8* scheduled ? I cannot see it in the link.

Thanks

Richard



Envoyé depuis mon smartphone Samsung Galaxy.


 Message d'origine 
De : Geertjan Wielenga 
Date : 09/05/2019 05:07 (GMT+01:00)
À : Emilian Bold 
Cc : Koos du Preez , NetBeans Mailing 

Objet : Re: Question on Netbeans 11 and C++

Here's the roadmap, C/C++ inclusion is scheduled for September:

https://cwiki.apache.org/confluence/display/NETBEANS/Apache+NetBeans+Release+Roadmap

Thanks,

Gj

On Thu, May 9, 2019 at 12:56 AM Emilian Bold 
mailto:emilian.b...@gmail.com>> wrote:
> 1 Does NB11 also include C++ projects (I only saw Java, PHP and couple other 
> web based types)

No. I suspect the next release will include the C++ projects.

In the meantime you can try CoolBeans ( https://coolbeans.xyz ) which
does compile the C++ modules.

> 3 Does NB11 support C++17 ?

I suspect not entirely... but only because a low level library I know
related to the clang frontend is from Oct 2017 while C++17 seems to
have been finalized in 2018.

Would be interested about your feedback.

--emi

On Wed, May 8, 2019 at 10:22 PM Koos du Preez
mailto:koos.dupr...@terraclear.com>> wrote:
>
> We are using Netbeans 8.2 extensively for cross platform C++ development and 
> I was curious with Netbeans 11 release, I have the following questions
>
> 1 Does NB11 also include C++ projects (I only saw Java, PHP and couple other 
> web based types)
>
> 2 Can you upgrade NB8.2 projects to NB11 ?
>
> 3 Does NB11 support C++17 ?
>
>
> Thanks!

-
To unsubscribe, e-mail: 
users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: 
users-h...@netbeans.apache.org

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



Re: Java 9+ is the module-info wizard too rigorous?

2019-05-08 Thread Geertjan Wielenga
Thanks a lot for this great analysis and welcome to the NetBeans community.

I think the main problem here is that I don't think there's anyone who is
very knowledgeable about this part of the code.

Do you expect that a lot of code will need to be changed to fix this or is
this a simple change or tweak that's needed somewhere specific?

Thanks,

Gj

On Mon, May 6, 2019 at 2:13 PM Alten, Jessica-Aileen <
jessica-aileen.al...@leibniz-liag.de> wrote:

> Hi,
>
> I am quite new to the JDK 9+ module system but I think I found a bug in the
> Netbeans module-info wizard (only tested with Netbeans 11). The problem is
> the code generation for automatic modules, which seems too rigorous. In my
> case, it is a maven project, but that does not matter, the Netbeans build
> mechanism produces the same result.
>
> Example: Using the jdom2-2.0.6.jar leads to this code
>
> module mymodulename {
> requires jdom;
> }
>
> Netbeans is fine with this, no errors, code completion works, but compiling
> the code gives a compilation error:
> ... module not found: jdom
>
> Changing "requires jdom" to "requires jdom2", in module-info.java results
> in
> lots of red error badges in module-info.java and other classes, code
> completion does not work and import statement says, "package
> org.jdom2.input
> is declared in module jdom, but module mymodulename does not read it."
>
>  But this works! Compilation is ok and the the class using the jdom2
> package
> is working fine!
>
> Calling "jar --describe-module --file=jdom2-2.0.6.jar" gives:
>
> jdom2@2.0.6 automatic
> requires java.base mandated
> contains org.jdom2
> contains org.jdom2.adapters
> contains org.jdom2.filter
> contains org.jdom2.input
> contains org.jdom2.input.sax
> contains org.jdom2.input.stax
> contains org.jdom2.internal
> contains org.jdom2.located
> contains org.jdom2.output
> contains org.jdom2.output.support
> contains org.jdom2.transform
> contains org.jdom2.util
> contains org.jdom2.xpath
> contains org.jdom2.xpath.jaxen
> contains org.jdom2.xpath.util
>
> I read some articles about the module mechanism of JDK 9+ especially about
> automatic modules and know that name generation for automatic modules
> truncates the version string part, in this case that would be "-2.0.6" but
> not "2-2.0.6", "2" is a distinctive feature not a version string. I think
> the Netbeans wizard is doing too much here. Would you confirm this?
>
> I know about the workarounds, i.e. modifying META-INF/MANIFEST.MF in the
> jar
> file and I know that this library should be updated for JDK 9+, but I think
> Netbeans should behave like the --describe-module result.
> Or did I misunderstand something fundamentally?
>
> Kind regards,
> Jessica
>
>
>
>


Re: Question on Netbeans 11 and C++

2019-05-08 Thread Geertjan Wielenga
Here's the roadmap, C/C++ inclusion is scheduled for September:

https://cwiki.apache.org/confluence/display/NETBEANS/Apache+NetBeans+Release+Roadmap

Thanks,

Gj

On Thu, May 9, 2019 at 12:56 AM Emilian Bold  wrote:

> > 1 Does NB11 also include C++ projects (I only saw Java, PHP and couple
> other web based types)
>
> No. I suspect the next release will include the C++ projects.
>
> In the meantime you can try CoolBeans ( https://coolbeans.xyz ) which
> does compile the C++ modules.
>
> > 3 Does NB11 support C++17 ?
>
> I suspect not entirely... but only because a low level library I know
> related to the clang frontend is from Oct 2017 while C++17 seems to
> have been finalized in 2018.
>
> Would be interested about your feedback.
>
> --emi
>
> On Wed, May 8, 2019 at 10:22 PM Koos du Preez
>  wrote:
> >
> > We are using Netbeans 8.2 extensively for cross platform C++ development
> and I was curious with Netbeans 11 release, I have the following questions
> >
> > 1 Does NB11 also include C++ projects (I only saw Java, PHP and couple
> other web based types)
> >
> > 2 Can you upgrade NB8.2 projects to NB11 ?
> >
> > 3 Does NB11 support C++17 ?
> >
> >
> > Thanks!
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>


Re: Trouble patching NetBeans 11.0 platform module

2019-05-08 Thread Geertjan Wielenga
But the build should succeed anyway, i.e., I don't see JavaHelp absence
blocking the build from succeeding for me. So, I'd advise to try the build
again and if it fails post the error message here. The build should succeed
with later JDKs, but safest is to use JDK 8.

Gj

On Thu, May 9, 2019 at 1:00 AM Emilian Bold  wrote:

> JavaHelp was removed from Apache NetBeans due to an Apache licensing
> policy.
>
> It's on my todo list for re-inclusion in CoolBeans (as some older
> Platform apps use it).
>
> --emi
>
> On Wed, May 8, 2019 at 11:34 PM Joseph Huber  wrote:
> >
> > Hello!
> >
> >
> >
> > I am in the initial phase of trying to patch a NetBeans 11.0 platform
> module (which I have successfully done in NetBeans 8.2) per the procedure
> at http://wiki.netbeans.org/DevFaqOrphanedNetBeansOrgModules.  I
> downloaded the 11.0 source from the links at
> >
> >
> https://www.apache.org/dyn/closer.cgi/incubator/netbeans/incubating-netbeans/incubating-11.0/incubating-netbeans-11.0-source.zip
> >
> >
> >
> > The process is crashing at the “ant -f nbbuild/build.xml bootstrap” step
> with numerous errors regarding javax.help, such as:
> >
> > nb_all\nbbuild\antsrc\org\netbeans\nbbuild\CheckHelpSets.java:37: error:
> package javax.help does not exist
> >
> >
> >
> > In the netbeans 8.2 platform source, javahelp\external contains the
> following files: binaries-list, jhall-2.0_05.jar, jhall-2.0_05-license.txt
> >
> >
> >
> > In the netbeans 11.0 platform source, javahelp\external contains the
> following files:  binaries-list,  jhall-2.0_05-license.txt
> >
> >
> >
> > jhall-2.0_05.jar is missing in 11.0, which I believe is the source of
> the above error.  The 11.0 binaries-list file contains the following text:
> >
> >
> >
> > # Licensed to the Apache Software Foundation (ASF) under one
> >
> > # or more contributor license agreements.  See the NOTICE file
> >
> > # distributed with this work for additional information
> >
> > # regarding copyright ownership.  The ASF licenses this file
> >
> > # to you under the Apache License, Version 2.0 (the
> >
> > # "License"); you may not use this file except in compliance
> >
> > # with the License.  You may obtain a copy of the License at
> >
> > #
> >
> > #   http://www.apache.org/licenses/LICENSE-2.0
> >
> > #
> >
> > # Unless required by applicable law or agreed to in writing,
> >
> > # software distributed under the License is distributed on an
> >
> > # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
> >
> > # KIND, either express or implied.  See the License for the
> >
> > # specific language governing permissions and limitations
> >
> > # under the License.
> >
> > CA70822C47A67FC3A11670270567C2D01566DAE1 jhall-2.0_05.jar
> >
> >
> >
> > It seems that jhall-2.0_05.jar should be in the 11.0, javahelp\external
> folder (like it is in 8.2), but it is missing.  Is this a bug?  I searched
> through the 11.0 source, and I don’t find jhall-2.0_05.jar included.
> >
> > Thank You for any help!
> >
> >
> >
> > Joe Huber
> >
> > Standard Refrigeration LLC
> >
> > 2005 Reverchon Dr
> >
> > Arlington, TX  76017
> >
> > Cell: 682-777-8374
> >
> > jhu...@stanref.co
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>


Re: Question on Netbeans 11 and C++

2019-05-08 Thread Emilian Bold
> 1 Does NB11 also include C++ projects (I only saw Java, PHP and couple other 
> web based types)

No. I suspect the next release will include the C++ projects.

In the meantime you can try CoolBeans ( https://coolbeans.xyz ) which
does compile the C++ modules.

> 3 Does NB11 support C++17 ?

I suspect not entirely... but only because a low level library I know
related to the clang frontend is from Oct 2017 while C++17 seems to
have been finalized in 2018.

Would be interested about your feedback.

--emi

On Wed, May 8, 2019 at 10:22 PM Koos du Preez
 wrote:
>
> We are using Netbeans 8.2 extensively for cross platform C++ development and 
> I was curious with Netbeans 11 release, I have the following questions
>
> 1 Does NB11 also include C++ projects (I only saw Java, PHP and couple other 
> web based types)
>
> 2 Can you upgrade NB8.2 projects to NB11 ?
>
> 3 Does NB11 support C++17 ?
>
>
> Thanks!

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

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



Re: Trouble patching NetBeans 11.0 platform module

2019-05-08 Thread Emilian Bold
JavaHelp was removed from Apache NetBeans due to an Apache licensing policy.

It's on my todo list for re-inclusion in CoolBeans (as some older
Platform apps use it).

--emi

On Wed, May 8, 2019 at 11:34 PM Joseph Huber  wrote:
>
> Hello!
>
>
>
> I am in the initial phase of trying to patch a NetBeans 11.0 platform module 
> (which I have successfully done in NetBeans 8.2) per the procedure at 
> http://wiki.netbeans.org/DevFaqOrphanedNetBeansOrgModules.  I downloaded the 
> 11.0 source from the links at
>
> https://www.apache.org/dyn/closer.cgi/incubator/netbeans/incubating-netbeans/incubating-11.0/incubating-netbeans-11.0-source.zip
>
>
>
> The process is crashing at the “ant -f nbbuild/build.xml bootstrap” step with 
> numerous errors regarding javax.help, such as:
>
> nb_all\nbbuild\antsrc\org\netbeans\nbbuild\CheckHelpSets.java:37: error: 
> package javax.help does not exist
>
>
>
> In the netbeans 8.2 platform source, javahelp\external contains the following 
> files: binaries-list, jhall-2.0_05.jar, jhall-2.0_05-license.txt
>
>
>
> In the netbeans 11.0 platform source, javahelp\external contains the 
> following files:  binaries-list,  jhall-2.0_05-license.txt
>
>
>
> jhall-2.0_05.jar is missing in 11.0, which I believe is the source of the 
> above error.  The 11.0 binaries-list file contains the following text:
>
>
>
> # Licensed to the Apache Software Foundation (ASF) under one
>
> # or more contributor license agreements.  See the NOTICE file
>
> # distributed with this work for additional information
>
> # regarding copyright ownership.  The ASF licenses this file
>
> # to you under the Apache License, Version 2.0 (the
>
> # "License"); you may not use this file except in compliance
>
> # with the License.  You may obtain a copy of the License at
>
> #
>
> #   http://www.apache.org/licenses/LICENSE-2.0
>
> #
>
> # Unless required by applicable law or agreed to in writing,
>
> # software distributed under the License is distributed on an
>
> # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
>
> # KIND, either express or implied.  See the License for the
>
> # specific language governing permissions and limitations
>
> # under the License.
>
> CA70822C47A67FC3A11670270567C2D01566DAE1 jhall-2.0_05.jar
>
>
>
> It seems that jhall-2.0_05.jar should be in the 11.0, javahelp\external 
> folder (like it is in 8.2), but it is missing.  Is this a bug?  I searched 
> through the 11.0 source, and I don’t find jhall-2.0_05.jar included.
>
> Thank You for any help!
>
>
>
> Joe Huber
>
> Standard Refrigeration LLC
>
> 2005 Reverchon Dr
>
> Arlington, TX  76017
>
> Cell: 682-777-8374
>
> jhu...@stanref.co

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

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



RE: Trouble patching NetBeans 11.0 platform module

2019-05-08 Thread Joseph Huber
Hello!

I have a solution that works quite well in Netbeans 8.2. I believe that the 
question is whether or not this approach should still work with NetBeans 11.0.  
If it should, then I would like to find out why it isn’t working.  If the 
approach described at http://wiki.netbeans.org/DevFaqOrphanedNetBeansOrgModules 
is no longer valid for NetBeans 11.0, then so be it, and I will move to a 
different approach.

In the bigger picture, it would probably be helpful for others in the community 
using the method in the aforementioned FAQ to know whether the method is still 
valid for 11.0.

I don’t know if my platform patch is useful for others.  There didn’t seem to 
be much interest when it was being discussed on forums.netbeans.org back in 
2016.

Thank You!

Joe Huber
Standard Refrigeration LLC
2005 Reverchon Dr
Arlington, TX  76017
Cell: 682-777-8374
jhu...@stanref.com

From: arsi 
Sent: Wednesday, May 8, 2019 4:47 PM
To: users@netbeans.apache.org
Subject: Re: Trouble patching NetBeans 11.0 platform module

Hi,

If you only want a private patch, you can do a patch module:

http://wiki.netbeans.org/DevFaqModulePatching

Maven example:
https://github.com/NBANDROIDTEAM/org-netbeans-modules-masterfs-patches


ArSi

From: Joseph Huber 
Sent: Wednesday, May 08, 2019 11:30PM
To: Geertjan Wielenga 
Cc: Users 
Subject: RE: Trouble patching NetBeans 11.0 platform module
My patch is described here:
http://netbeans-org.1045718.n5.nabble.com/Update-Center-issue-How-to-hide-remove-items-from-the-Available-Plugins-tab-td5749157.html#a5749162

As for patching the zip, I am familiar with that process, and I am not familiar 
with the GitHub/pull request process.   Patching the zip previously worked fine.

Thank You!

Joe Huber
Standard Refrigeration LLC
2005 Reverchon Dr
Arlington, TX  76017
Cell: 682-777-8374
jhu...@stanref.com

From: Geertjan Wielenga 
Sent: Wednesday, May 8, 2019 4:03 PM
To: Joseph Huber 
Cc: users@netbeans.apache.org
Subject: Re: Trouble patching NetBeans 11.0 platform module

I believe they should be downloaded during the build process.

But rather than patching via the ZIP, why not clone the GitHub repo and then 
provide a pull request there?

What does your patch do?

Gj


On Wed, 8 May 2019 at 22:34, Joseph Huber 
mailto:jhu...@stanref.com>> wrote:
Hello!

I am in the initial phase of trying to patch a NetBeans 11.0 platform module 
(which I have successfully done in NetBeans 8.2) per the procedure at 
http://wiki.netbeans.org/DevFaqOrphanedNetBeansOrgModules.  I downloaded the 
11.0 source from the links at
https://www.apache.org/dyn/closer.cgi/incubator/netbeans/incubating-netbeans/incubating-11.0/incubating-netbeans-11.0-source.zip

The process is crashing at the “ant -f nbbuild/build.xml bootstrap” step with 
numerous errors regarding javax.help, such as:
nb_all\nbbuild\antsrc\org\netbeans\nbbuild\CheckHelpSets.java:37: error: 
package javax.help does not exist

In the netbeans 8.2 platform source, javahelp\external contains the following 
files: binaries-list, jhall-2.0_05.jar, jhall-2.0_05-license.txt

In the netbeans 11.0 platform source, javahelp\external contains the following 
files:  binaries-list,  jhall-2.0_05-license.txt

jhall-2.0_05.jar is missing in 11.0, which I believe is the source of the above 
error.  The 11.0 binaries-list file contains the following text:

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.
CA70822C47A67FC3A11670270567C2D01566DAE1 jhall-2.0_05.jar

It seems that jhall-2.0_05.jar should be in the 11.0, javahelp\external folder 
(like it is in 8.2), but it is missing.  Is this a bug?  I searched through the 
11.0 source, and I don’t find jhall-2.0_05.jar included.
Thank You for any help!

Joe Huber
Standard Refrigeration LLC
2005 Reverchon 
Dr
Arlington, 
TX
  
76017

Re: Trouble patching NetBeans 11.0 platform module

2019-05-08 Thread arsi

Hi,

If you only want a private patch, you can do a patch module:

http://wiki.netbeans.org/DevFaqModulePatching

Maven example:
https://github.com/NBANDROIDTEAM/org-netbeans-modules-masterfs-patches


ArSi

*From:* Joseph Huber 
*Sent:* Wednesday, May 08, 2019 11:30PM
*To:* Geertjan Wielenga 
*Cc:* Users 
*Subject:* RE: Trouble patching NetBeans 11.0 platform module


My patch is described here:

http://netbeans-org.1045718.n5.nabble.com/Update-Center-issue-How-to-hide-remove-items-from-the-Available-Plugins-tab-td5749157.html#a5749162

As for patching the zip, I am familiar with that process, and I am not 
familiar with the GitHub/pull request process.   Patching the zip 
previously worked fine.


Thank You!

Joe Huber

Standard Refrigeration LLC

2005 Reverchon Dr

Arlington, TX  76017

Cell: 682-777-8374

jhu...@stanref.com

*From:*Geertjan Wielenga 
*Sent:* Wednesday, May 8, 2019 4:03 PM
*To:* Joseph Huber 
*Cc:* users@netbeans.apache.org
*Subject:* Re: Trouble patching NetBeans 11.0 platform module

I believe they should be downloaded during the build process.

But rather than patching via the ZIP, why not clone the GitHub repo 
and then provide a pull request there?


What does your patch do?

Gj

On Wed, 8 May 2019 at 22:34, Joseph Huber > wrote:


Hello!

I am in the initial phase of trying to patch a NetBeans 11.0
platform module (which I have successfully done in NetBeans 8.2)
per the procedure at
http://wiki.netbeans.org/DevFaqOrphanedNetBeansOrgModules.  I
downloaded the 11.0 source from the links at


https://www.apache.org/dyn/closer.cgi/incubator/netbeans/incubating-netbeans/incubating-11.0/incubating-netbeans-11.0-source.zip


The process is crashing at the “ant -f nbbuild/build.xml
bootstrap” step with numerous errors regarding javax.help, such as:

nb_all\nbbuild\antsrc\org\netbeans\nbbuild\CheckHelpSets.java:37:
error: package javax.help does not exist

In the netbeans 8.2 platform source, javahelp\external contains
the following files: binaries-list, jhall-2.0_05.jar,
jhall-2.0_05-license.txt

In the netbeans 11.0 platform source, javahelp\external contains
the following files:  binaries-list, jhall-2.0_05-license.txt

jhall-2.0_05.jar is missing in 11.0, which I believe is the source
of the above error.  The 11.0 binaries-list file contains the
following text:

# Licensed to the Apache Software Foundation (ASF) under one

# or more contributor license agreements.  See the NOTICE file

# distributed with this work for additional information

# regarding copyright ownership.  The ASF licenses this file

# to you under the Apache License, Version 2.0 (the

# "License"); you may not use this file except in compliance

# with the License.  You may obtain a copy of the License at

#

# http://www.apache.org/licenses/LICENSE-2.0

#

# Unless required by applicable law or agreed to in writing,

# software distributed under the License is distributed on an

# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY

# KIND, either express or implied.  See the License for the

# specific language governing permissions and limitations

# under the License.

CA70822C47A67FC3A11670270567C2D01566DAE1 jhall-2.0_05.jar

It seems that jhall-2.0_05.jar should be in the 11.0,
javahelp\external folder (like it is in 8.2), but it is missing. 
Is this a bug?  I searched through the 11.0 source, and I don’t
find jhall-2.0_05.jar included.

Thank You for any help!

Joe Huber

Standard Refrigeration LLC

2005 Reverchon Dr



Arlington, TX


76017



Cell: 682-777-8374

jhu...@stanref.co 










Re: Trouble patching NetBeans 11.0 platform module

2019-05-08 Thread Geertjan Wielenga
What I mean is, fork the GitHub repo to your own repo, clone that fork,
make your change, then do a pull request back to the GitHub repo.

Here is the GitHub repo:

https://github.com/apache/incubator-netbeans

Assuming of course that you're doing a patch that should be part of
NetBeans for everyone and not just for you.

Gj


On Wed, May 8, 2019 at 11:30 PM Joseph Huber  wrote:

> My patch is described here:
>
>
> http://netbeans-org.1045718.n5.nabble.com/Update-Center-issue-How-to-hide-remove-items-from-the-Available-Plugins-tab-td5749157.html#a5749162
>
>
>
> As for patching the zip, I am familiar with that process, and I am not
> familiar with the GitHub/pull request process.   Patching the zip
> previously worked fine.
>
>
>
> Thank You!
>
>
>
> Joe Huber
>
> Standard Refrigeration LLC
>
> 2005 Reverchon Dr
>
> Arlington, TX  76017
>
> Cell: 682-777-8374
>
> jhu...@stanref.com
>
>
>
> *From:* Geertjan Wielenga 
> *Sent:* Wednesday, May 8, 2019 4:03 PM
> *To:* Joseph Huber 
> *Cc:* users@netbeans.apache.org
> *Subject:* Re: Trouble patching NetBeans 11.0 platform module
>
>
>
> I believe they should be downloaded during the build process.
>
>
>
> But rather than patching via the ZIP, why not clone the GitHub repo and
> then provide a pull request there?
>
>
>
> What does your patch do?
>
>
>
> Gj
>
>
>
>
>
> On Wed, 8 May 2019 at 22:34, Joseph Huber  wrote:
>
> Hello!
>
>
>
> I am in the initial phase of trying to patch a NetBeans 11.0 platform
> module (which I have successfully done in NetBeans 8.2) per the procedure
> at http://wiki.netbeans.org/DevFaqOrphanedNetBeansOrgModules.  I
> downloaded the 11.0 source from the links at
>
>
> https://www.apache.org/dyn/closer.cgi/incubator/netbeans/incubating-netbeans/incubating-11.0/incubating-netbeans-11.0-source.zip
>
>
>
> The process is crashing at the “ant -f nbbuild/build.xml bootstrap” step
> with numerous errors regarding javax.help, such as:
>
> nb_all\nbbuild\antsrc\org\netbeans\nbbuild\CheckHelpSets.java:37: error:
> package javax.help does not exist
>
>
>
> In the netbeans 8.2 platform source, javahelp\external contains the
> following files: binaries-list, jhall-2.0_05.jar, jhall-2.0_05-license.txt
>
>
>
> In the netbeans 11.0 platform source, javahelp\external contains the
> following files:  binaries-list,  jhall-2.0_05-license.txt
>
>
>
> jhall-2.0_05.jar is missing in 11.0, which I believe is the source of the
> above error.  The 11.0 binaries-list file contains the following text:
>
>
>
> # Licensed to the Apache Software Foundation (ASF) under one
>
> # or more contributor license agreements.  See the NOTICE file
>
> # distributed with this work for additional information
>
> # regarding copyright ownership.  The ASF licenses this file
>
> # to you under the Apache License, Version 2.0 (the
>
> # "License"); you may not use this file except in compliance
>
> # with the License.  You may obtain a copy of the License at
>
> #
>
> #   http://www.apache.org/licenses/LICENSE-2.0
>
> #
>
> # Unless required by applicable law or agreed to in writing,
>
> # software distributed under the License is distributed on an
>
> # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
>
> # KIND, either express or implied.  See the License for the
>
> # specific language governing permissions and limitations
>
> # under the License.
>
> CA70822C47A67FC3A11670270567C2D01566DAE1 jhall-2.0_05.jar
>
>
>
> It seems that jhall-2.0_05.jar should be in the 11.0, javahelp\external
> folder (like it is in 8.2), but it is missing.  Is this a bug?  I searched
> through the 11.0 source, and I don’t find jhall-2.0_05.jar included.
>
> Thank You for any help!
>
>
>
> Joe Huber
>
> Standard Refrigeration LLC
>
> 2005 Reverchon Dr
> 
>
> Arlington, TX
> 
> 76017
> 
>
> Cell: 682-777-8374
>
> jhu...@stanref.co
>
>


RE: Trouble patching NetBeans 11.0 platform module

2019-05-08 Thread Joseph Huber
My patch is described here:
http://netbeans-org.1045718.n5.nabble.com/Update-Center-issue-How-to-hide-remove-items-from-the-Available-Plugins-tab-td5749157.html#a5749162

As for patching the zip, I am familiar with that process, and I am not familiar 
with the GitHub/pull request process.   Patching the zip previously worked fine.

Thank You!

Joe Huber
Standard Refrigeration LLC
2005 Reverchon Dr
Arlington, TX  76017
Cell: 682-777-8374
jhu...@stanref.com

From: Geertjan Wielenga 
Sent: Wednesday, May 8, 2019 4:03 PM
To: Joseph Huber 
Cc: users@netbeans.apache.org
Subject: Re: Trouble patching NetBeans 11.0 platform module

I believe they should be downloaded during the build process.

But rather than patching via the ZIP, why not clone the GitHub repo and then 
provide a pull request there?

What does your patch do?

Gj


On Wed, 8 May 2019 at 22:34, Joseph Huber 
mailto:jhu...@stanref.com>> wrote:
Hello!

I am in the initial phase of trying to patch a NetBeans 11.0 platform module 
(which I have successfully done in NetBeans 8.2) per the procedure at 
http://wiki.netbeans.org/DevFaqOrphanedNetBeansOrgModules.  I downloaded the 
11.0 source from the links at
https://www.apache.org/dyn/closer.cgi/incubator/netbeans/incubating-netbeans/incubating-11.0/incubating-netbeans-11.0-source.zip

The process is crashing at the “ant -f nbbuild/build.xml bootstrap” step with 
numerous errors regarding javax.help, such as:
nb_all\nbbuild\antsrc\org\netbeans\nbbuild\CheckHelpSets.java:37: error: 
package javax.help does not exist

In the netbeans 8.2 platform source, javahelp\external contains the following 
files: binaries-list, jhall-2.0_05.jar, jhall-2.0_05-license.txt

In the netbeans 11.0 platform source, javahelp\external contains the following 
files:  binaries-list,  jhall-2.0_05-license.txt

jhall-2.0_05.jar is missing in 11.0, which I believe is the source of the above 
error.  The 11.0 binaries-list file contains the following text:

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.
CA70822C47A67FC3A11670270567C2D01566DAE1 jhall-2.0_05.jar

It seems that jhall-2.0_05.jar should be in the 11.0, javahelp\external folder 
(like it is in 8.2), but it is missing.  Is this a bug?  I searched through the 
11.0 source, and I don’t find jhall-2.0_05.jar included.
Thank You for any help!

Joe Huber
Standard Refrigeration LLC
2005 Reverchon 
Dr
Arlington, 
TX
  
76017
Cell: 682-777-8374
jhu...@stanref.co


RE: NB Platform Maven Dependencies

2019-05-08 Thread Adam Korynta
I am using the http://bits.netbeans.org/nexus/content/groups/netbeans/ 
repository as that’s what NetBeans 8.2 injected automatically. Reverting from 
version 4.1 to 4.0 resolved the issue for me.

Adam

From: Emilian Bold 
Sent: Monday, May 06, 2019 10:58 AM
To: Adam Korynta 
Cc: NetBeans Mailing 
Subject: Re: NB Platform Maven Dependencies

I assume this is using Maven Central or the older NetBeans.org maven2 
repository?

We recently published the Maven Central artefacts, it's possible there is a 
bug...

--emi

lun., 6 mai 2019, 20:53 Adam Korynta mailto:a...@rmanet.com>> 
a scris:
Hi All,

I’m trying to compile my Netbeans Platform modules using Maven, but I’m unable 
to compile due to the following errors:


[INFO] Private classes referenced in module: 
[org.netbeans.modules.settings.RecognizeInstanceObjects]
[ERROR] Project depends on packages not accessible at runtime in module 
org.netbeans.api:org-netbeans-modules-settings:nbm:RELEASE82
[INFO] Private classes referenced in module: 
[org.netbeans.modules.openide.util.ServiceProviderProcessor]
[ERROR] Project depends on packages not accessible at runtime in module 
org.netbeans.api:org-openide-util-lookup:nbm:RELEASE82
[INFO] Private classes referenced in module: 
[org.netbeans.modules.openide.filesystems.RecognizeInstanceFiles]
[ERROR] Project depends on packages not accessible at runtime in module 
org.netbeans.api:org-openide-filesystems:nbm:RELEASE82


These modules are declared in my pom.xml dependencies list as below:



   org.netbeans.api
   org-netbeans-modules-settings
   ${netbeans.version}
   nbm


   org.netbeans.api
   org-openide-util-lookup
   ${netbeans.version}
   nbm


   org.netbeans.api
   org-openide-filesystems
   ${netbeans.version}
   nbm


When I look at the downloaded .jar and .nbm files, the MANIFEST.MFs’ 
OpenIDE-Module-Public-Packages entries do not contain the packages that are 
trying to be referenced. I’ve attached the 
org-netbeans-modules-settings-RELEASE82.jar’s MANIFEST.MF as an example. I 
would expect to find the “org.netbeans.modules.settings” package under the 
public packages listing.

If anyone could let me know what I’m doing wrong, that would be great1

Thank you,

Adam Korynta
Resource Management Associates - Software Developer
1756 Picasso Avenue, Suite G, Davis, CA 95618
Phone 530-564-7043 ext. 217
Fax 530-231-5323
a...@rmanet.com
https://www.rmanet.com

[logo]


-
To unsubscribe, e-mail: 
users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: 
users-h...@netbeans.apache.org

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


Re: Trouble patching NetBeans 11.0 platform module

2019-05-08 Thread Geertjan Wielenga
I believe they should be downloaded during the build process.

But rather than patching via the ZIP, why not clone the GitHub repo and
then provide a pull request there?

What does your patch do?

Gj


On Wed, 8 May 2019 at 22:34, Joseph Huber  wrote:

> Hello!
>
>
>
> I am in the initial phase of trying to patch a NetBeans 11.0 platform
> module (which I have successfully done in NetBeans 8.2) per the procedure
> at http://wiki.netbeans.org/DevFaqOrphanedNetBeansOrgModules.  I
> downloaded the 11.0 source from the links at
>
>
> https://www.apache.org/dyn/closer.cgi/incubator/netbeans/incubating-netbeans/incubating-11.0/incubating-netbeans-11.0-source.zip
>
>
>
> The process is crashing at the “ant -f nbbuild/build.xml bootstrap” step
> with numerous errors regarding javax.help, such as:
>
> nb_all\nbbuild\antsrc\org\netbeans\nbbuild\CheckHelpSets.java:37: error:
> package javax.help does not exist
>
>
>
> In the netbeans 8.2 platform source, javahelp\external contains the
> following files: binaries-list, jhall-2.0_05.jar, jhall-2.0_05-license.txt
>
>
>
> In the netbeans 11.0 platform source, javahelp\external contains the
> following files:  binaries-list,  jhall-2.0_05-license.txt
>
>
>
> jhall-2.0_05.jar is missing in 11.0, which I believe is the source of the
> above error.  The 11.0 binaries-list file contains the following text:
>
>
>
> # Licensed to the Apache Software Foundation (ASF) under one
>
> # or more contributor license agreements.  See the NOTICE file
>
> # distributed with this work for additional information
>
> # regarding copyright ownership.  The ASF licenses this file
>
> # to you under the Apache License, Version 2.0 (the
>
> # "License"); you may not use this file except in compliance
>
> # with the License.  You may obtain a copy of the License at
>
> #
>
> #   http://www.apache.org/licenses/LICENSE-2.0
>
> #
>
> # Unless required by applicable law or agreed to in writing,
>
> # software distributed under the License is distributed on an
>
> # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
>
> # KIND, either express or implied.  See the License for the
>
> # specific language governing permissions and limitations
>
> # under the License.
>
> CA70822C47A67FC3A11670270567C2D01566DAE1 jhall-2.0_05.jar
>
>
>
> 
>
> It seems that jhall-2.0_05.jar should be in the 11.0, javahelp\external
> folder (like it is in 8.2), but it is missing.  Is this a bug?  I searched
> through the 11.0 source, and I don’t find jhall-2.0_05.jar included.
>
> Thank You for any help!
>
>
>
> Joe Huber
>
> Standard Refrigeration LLC
>
> 2005 Reverchon Dr
> 
>
> Arlington, TX
> 
> 76017
> 
>
> Cell: 682-777-8374
>
> jhu...@stanref.co
>


Trouble patching NetBeans 11.0 platform module

2019-05-08 Thread Joseph Huber
Hello!

I am in the initial phase of trying to patch a NetBeans 11.0 platform module 
(which I have successfully done in NetBeans 8.2) per the procedure at 
http://wiki.netbeans.org/DevFaqOrphanedNetBeansOrgModules.  I downloaded the 
11.0 source from the links at
https://www.apache.org/dyn/closer.cgi/incubator/netbeans/incubating-netbeans/incubating-11.0/incubating-netbeans-11.0-source.zip

The process is crashing at the "ant -f nbbuild/build.xml bootstrap" step with 
numerous errors regarding javax.help, such as:
nb_all\nbbuild\antsrc\org\netbeans\nbbuild\CheckHelpSets.java:37: error: 
package javax.help does not exist

In the netbeans 8.2 platform source, javahelp\external contains the following 
files: binaries-list, jhall-2.0_05.jar, jhall-2.0_05-license.txt

In the netbeans 11.0 platform source, javahelp\external contains the following 
files:  binaries-list,  jhall-2.0_05-license.txt

jhall-2.0_05.jar is missing in 11.0, which I believe is the source of the above 
error.  The 11.0 binaries-list file contains the following text:

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.
CA70822C47A67FC3A11670270567C2D01566DAE1 jhall-2.0_05.jar

It seems that jhall-2.0_05.jar should be in the 11.0, javahelp\external folder 
(like it is in 8.2), but it is missing.  Is this a bug?  I searched through the 
11.0 source, and I don't find jhall-2.0_05.jar included.
Thank You for any help!

Joe Huber
Standard Refrigeration LLC
2005 Reverchon Dr
Arlington, TX  76017
Cell: 682-777-8374
jhu...@stanref.co


Question on Netbeans 11 and C++

2019-05-08 Thread Koos du Preez
We are using Netbeans 8.2 extensively for cross platform C++
development and I was curious with Netbeans 11 release, I have the
following questions

1 Does NB11 also include C++ projects (I only saw Java, PHP and couple
other web based types)

2 Can you upgrade NB8.2 projects to NB11 ?

3 Does NB11 support C++17 ?


Thanks!


Re: Error compiling a very simple Web Java program

2019-05-08 Thread Quang Nguyen
Hi,
Thank you so much for the response.
Since I’m quite new to Java, can you tell me exactly how and where to make the 
suggested change?


> On May 7, 2019, at 3:20 PM, Quang Nguyen  wrote:
> 
> Hi,
> Can you let me know what I should do to resolve the error below?
> This is a very simple Web Java program that passes the user’s input from 
> index.jsp to response.jsp
> 
> Created dir: /Users/apple/NetBeansProjects/HelloWeb/build/empty
> Created dir: 
> /Users/apple/NetBeansProjects/HelloWeb/build/generated-sources/ap-source-output
> Compiling 1 source file to 
> /Users/apple/NetBeansProjects/HelloWeb/build/web/WEB-INF/classes
> error: option -Xbootclasspath/p: not allowed with target 12
> 
> I compiled it in Netbeans 11 using JDK 12.0.1
> Thank you,