Reputation: 556
I have a gradle based java application designed based out of Netflix OSS. I want to convert the app to maven based. Can anyone please help me to convert the app ?
Upvotes: 0
Views: 38
Reputation: 997
It should fairly easy to achieve the same.
Maven and Gradle have a similar concept of dependency management.
The compilation and other stuff is similar.
Only thing which varies is customizability which gradle provides.
Following link should get you started:
http://www.gradle.org/docs/current/userguide/maven_plugin.html#sec:maven_pom_generation
Upvotes: 1