Why maven so slow compared to automake?
Posted
by
???'Lenik
on Programmers
See other posts from Programmers
or by ???'Lenik
Published on 2011-03-01T11:15:06Z
Indexed on
2011/03/01
15:32 UTC
Read the original article
Hit count: 331
I have a Maven project consists of around 100 modules. I have reason to decompose the project to so many modules, and I don't think I should merge them in order to speed up the build process.
I have read a lot of projects by other people, e.g., the Maven project itself, and Apache Archiva, and Hudson project, they all consists of a lot of modules, nearly 100 maybe, more or less.
The problem is, to build them all need so much time, 3 hours for the first time build (this is acceptable because a lot of artifacts to download), and 15 minutes for the second build (this is not acceptable).
For automake, things are similarly, the first time you need to configure the project, to prepare the magical config.h file, it's far more complex then what maven does. But it's still fast, maybe 10 seconds on my Debian box. After then, make install
requires maybe 10 minutes for the first time build. However, when everything get prepared, the .o
object files are generated, they don't have to be rebuild at all for the second time build. (In Maven, everything rebuild at everytime.)
I'm very wondering, how guys working for Maven projects can bare this long time for each build, I'm just can't sit down calmly during each time Maven build, it took too long time, really.
© Programmers or respective owner