Hello,
I am migrating a Maven3 Project to Gradle. The project is very large. It has many levels which are under the home folder. All the subprojects have java code and unit test cases to execute and of course has some jar dependency.
As of now, Gradle build is working fine for one of those levels which has 75 sub - projects underneath.
As I understand, Gradle supports incremental builds and should take less time to build than the Maven.
However, if I execute gradle clean biuld first time it takes less time than Maven, but on successive execution the Gradle and Maven build times are almost the same. Sometimes Gradle takes more build time than the Maven
Even with daemon and parallel execution, the build times are almost the same.
The main reason to migrate to Gradle for this project is to reduce the unnecessary build time required for small changes in the code.
Please let me know your inputs.