I have a Gradle project and I need all its dependencies to be transferred and used with another Maven project. In other words how can I generate (or can I generate) the pom.xml from the build.gradle?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The most built in solution would likely be to use the |
|||
|
|
|
When using Gradle's Maven plugin, the install task is automatically added to your tasks, and calling it will always generate a POM file. So if your build.gradle file looks like this:
you can call |
|||
|
|