Re: Re: Speed of Maven build

2020-08-25 Thread Eric Bresie
Would multi threading/multi core parameters help speed things up? https://stackoverflow.com/questions/32368976/ways-to-make-maven-build-faster/44646756#44646756 Or other speedups like limiting some activities or profile the builds?

Re: JavaFX 2 support; modular java and refactoring

2020-08-25 Thread Ernie Rael
(One of those days...) In bugzilla it was easy to create an "umbrella" issue using "depends on" to set up a parent/child relationship. Is there anything similar to do with jira. Labels is a poor substitute. Consider the large number of differently spelled performance labels. -ernie On

Re: JavaFX 2 support; modular java and refactoring

2020-08-25 Thread Ernie Rael
On 8/25/2020 2:41 PM, Ernie Rael wrote: Greetings, I just did a pull request, https://github.com/apache/netbeans/pull/2331. (someday I'll learn not to tell people to file bugs) The problem arises from the 'JavaFX 2 support' not being modular java friendly. While looking at this I

JavaFX 2 support; modular java and refactoring

2020-08-25 Thread Ernie Rael
Greetings, I just did a pull request, https://github.com/apache/netbeans/pull/2331. (someday I'll learn not to tell people to file bugs) The problem arises from the 'JavaFX 2 support' not being modular java friendly. While looking at this I encountered some other issues. (I've got 8 issues

Re: Speed of Maven build

2020-08-25 Thread Manfred Moser
Mickael Istria wrote on 2020-08-25 14:17 (GMT -07:00): > I > > On Tuesday, August 25, 2020, Manfred Moser wrote: >> And the VS code integration from Red Hat might also do something along > those lines. > > It embeds and uses m2eclipse. > Haha.. thanks for confirming. I thought that to be

Re: Speed of Maven build

2020-08-25 Thread Mickael Istria
I On Tuesday, August 25, 2020, Manfred Moser wrote: > And the VS code integration from Red Hat might also do something along those lines. It embeds and uses m2eclipse. -- Mickael Istria Eclipse IDE developer, for Red Hat Developers

Re: Speed of Maven build

2020-08-25 Thread Manfred Moser
Also the M2Eclipse integration does basically embed maven and make the Maven build incremental. The Takari plugin does that on the commandline with the eclipse compiler And the VS code integration from Red Hat might also do something along those lines. Others can chime in with more details.

Re: Speed of Maven build

2020-08-25 Thread John Patrick
Are you planning to create a baseline project or selecting a range of projects to be used as a baseline, so that perceived improvements can be monitored? So that anyone wanting to help out or give feedback can submit their own build performance. i.e. 1. Equipment OS, Ram, CPU, physical, virtual,

Re: Speed of Maven build

2020-08-25 Thread Will Hartung
On Tue, Aug 25, 2020 at 4:37 AM Jeff Jensen < jeffjen...@upstairstechnology.com> wrote: > In case this helps, Jason Dillon has a "Maven Shell" that does what you > seek for CLI - launches a Maven instance and runs interactive commands with > it, saving the startup time. >

Re: Is JShell suposed to work?

2020-08-25 Thread Jeremy Cavanagh
Thanks John, I have already looked at some of these but still no luck. So I shall give it a rest for now. Regards Jeremy On 24/08/2020 22:09, John Kostaras wrote: There seem to be still a number of open issues about JShell in JIRA

Re: Speed of Maven build

2020-08-25 Thread Jeff Jensen
In case this helps, Jason Dillon has a "Maven Shell" that does what you seek for CLI - launches a Maven instance and runs interactive commands with it, saving the startup time. https://github.com/jdillon/mvnsh On Tue, Aug 25, 2020 at 12:27 AM Jaroslav Tulach wrote: > > And it's Apache Maven,

Re: How to debug netbeans

2020-08-25 Thread Neil C Smith
On Tue, 25 Aug 2020 at 11:26, Carl Mosca wrote: > I have been working with the dcevm > and NetBeans a bit > lately and hotswapping classes works nicely in some current use cases > (remote web applications for example). Don't get me started on

Re: How to debug netbeans

2020-08-25 Thread Carl Mosca
In general, I find that NetBeans alone works nicely for my debugging sessions. There are certainly some nice features which I believe makes it a very practical tool. I have used JRebel in the past but I must say the company (sold twice I think) has made things a bit less friendly with respect to

Re: How to debug netbeans

2020-08-25 Thread Jean-Marc Borer
I also kind of disagree with Tim about it un-usefulness of a debugger. You can achieve way more that just stepping through the code. You can even dynamically add debugging traces without needing to touch the code and this he forgets: you cannot add logging statements for code you cannot compile