Re: Speed of Maven build

2020-09-05 Thread Jaroslav Tulach
Dne úterý 25. srpna 2020 13:26:33 CEST, Jeff Jensen napsal(a): > 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 Thanks Jeff. The

Re: Speed of Maven build

2020-08-27 Thread Martin Kanters
Hi Jaroslav, nice analysis. In the maven-integration-testing repository [1] Maven can be started fully independently or embedded in the same JDK. The latter is activated with the Maven profile "embedded". This also gives a huge performance boost, running tests in tenths of a second instead of

Re: Speed of Maven build

2020-08-26 Thread Jaroslav Tulach
Dne středa 26. srpna 2020 10:01:33 CEST, Davide Grandi napsal(a): > Sorry to be late, but > there is a project test case for Maven "slowlyness" ? This is a great question, thanks Davide! I've just tried to create such project: https://issues.apache.org/jira/browse/NETBEANS-4746 and yes,

Re: Re: Speed of Maven build

2020-08-26 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: Speed of Maven build

2020-08-26 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: 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 Falko Modler
Maybe slightly offtopic but if you have (many) submodules, you might want to consider automatic incremental builds (based on SCM changes) with https://github.com/vackosar/gitflow-incremental-builder Don't be scared by the name. You do not actually need a gitflow branch layout. Disclaimer: I am

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 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: Speed of Maven build

2020-08-24 Thread Jaroslav Tulach
> And it's Apache Maven, over the corner at https://maven.apache.org/ so > I suppose that community would be happy to get such contributions. > > -Bertrand You are right, Bertrand. Why not ask! Hello Maven guys, we had a discussion on the NetBeans mailing list recently and here is a summary: *