PKumar
PKumar

Reputation: 556

How to convert a gradle based java app to maven app?

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

Answers (1)

akshaya pandey
akshaya pandey

Reputation: 997

It should fairly easy to achieve the same.

  1. Maven and Gradle have a similar concept of dependency management.

  2. The compilation and other stuff is similar.

  3. 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

Related Questions