vttranlina opened a new pull request #897: URL: https://github.com/apache/james-project/pull/897
When running maven (`mvn clean install`), The new version of scala maven plugin (v4.5.6) take more time than older version we used before (v.3.4.6) (https://github.com/apache/james-project/pull/826/commits/c2288511de79d1282081f39aba34e23213041317) It comes from `incremental compilation` (https://davidb.github.io/scala-maven-plugin/example_incremental.html) "The incremental compilation is enabled by default after scala-maven-plugin v4.0.0, and the "recompileMode" configuration option is set to "incremental" by default." => Change suggestion: `<recompileMode>incremental</recompileMode>` -> `<recompileMode>all</recompileMode>` ### Result - Command: `mvn clean install -Dmaven.javadoc.skip=true -DskipTests -T11` - Env 1: My PC - CPU AMD 5600G - 6 core 12 threads - Before: Total time: 05:26 min (Wall Clock) - After: Total time: 03:47 min (Wall Clock) - - Env 2: My Laptop - CPU Intel 8250u - 4 core 8 thread - Before: Total time: 12:09 min (Wall Clock) - After: Total time: 08:28 min (Wall Clock)  -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
