slawekjaranowski commented on PR #160: URL: https://github.com/apache/maven-compiler-plugin/pull/160#issuecomment-1348400184
My test - Classes in target prod and unit: 4883 - Maven modules: 326 - JDK 1.8 - Os: MacOs 12.6.1 - 2,6 GHz 6-Core Intel Core i7, 32 GB 2667 MHz DDR4 - m-c-p 3.10.1 # Scenario 1 ``` mvn test-compile mvn test-compile | grep -e "Nothing to compile\|Changes detected\|Total time" > 1.txt ``` # Scenario 2 ``` mvn clean mvn test-compile | grep -e "Nothing to compile\|Changes detected\|Total time" > 2.txt ``` # Result 1 ``` grep "Changes detected" 1.txt | wc -l 1 grep "Nothing to compile" 1.txt | wc -l 313 [INFO] Total time: 01:02 min ``` # Result 2 ``` grep "Changes detected" 2.txt | wc -l 314 grep "Nothing to compile" 2.txt | wc -l 0 [INFO] Total time: 05:59 min ``` -- 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: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org