We have a large project that uses Maven as a build system. We decided that in future projects we will use Gradle as a more convenient tool, but we also want to use Gradle for our old project.
I think that switching from Maven to Gradle at one time will be very painful, because we have TONS code in POM files (we have really heavy build logic).
I know that Gradle has an automation tool (gradle init), but it does not work correctly (I think this tool is for small Maven projects without specific build logic).
So here is the question: can I include the Gradle module in a Maven project for migration with small steps? Maybe there is a Maven plugin that allows you to process build.gradle
as a pom.xml
file?
source share