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 t

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 tw

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 > c

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 rega

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: Quest

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

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 > othe

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:0

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 su

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 NetBe

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/DevFaqOrpha

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 Hub

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 everyon

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. Patchin

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

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

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.

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

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