I have been happily using IntelliJ + Gradle, but I was recently asked to move to Maven as a build tool. Is there an easy way to convert a Gradle project to Maven in IntelliJ or perhaps keep both configuration files (build.gradle and pom.xml)? As per Gradle build.gradle to Maven pom.xml, I have used the Gradle Maven's plugin and generated the pom.xml file in build/poms, but I would like to keep both build.gradle and pom.xml at the same level providing the ability to build the project using whichever is preferred. Is that possible?
Thanks,