I have a multiproject maven build that runs it’s test within about 40 seconds (all code already compiled):
[INFO] ------------------------------------------------------------------------
[INFO] Building ParAd-distribution 5.1.0-RC01
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] ParAd-All ......................................... SUCCESS [0.003s]
[INFO] ParaProcessExecutor ............................... SUCCESS [6.144s]
[INFO] ParadVirtualDownload .............................. SUCCESS [0.387s]
[INFO] ParAd ............................................. SUCCESS [17.898s]
[INFO] CustomerParameterDef .............................. SUCCESS [4.543s]
[INFO] ParadFileMerger ................................... SUCCESS [0.533s]
[INFO] AsapFileGenerator ................................. SUCCESS [9.104s]
[INFO] ParadVariantBuilder ............................... SUCCESS [1.883s]
[INFO] ParAd-distribution ................................ SUCCESS [0.009s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 40.859s
[INFO] Finished at: Tue Sep 18 14:11:35 CEST 2012
[INFO] Final Memory: 16M/99M
[INFO] ------------------------------------------------------------------------
I converted the build using the maven2Greadle plugin and ran the thest on the verry same precompiled code it takes much more time:
D:\PARAD-Application>gradle test
...
complete outut here: http://pastie.org/4747000
BUILD SUCCESSFUL
Total time: 16 mins 41.372 secs
D:\PARAD-Application>
how can I speed up Greadle to be at lease nearly as fast a maven?
bye Thomas