Hello! By any chance anyone here got some experien...
# gradle
d
Hello! By any chance anyone here got some experience building out
maven-plugin
using Gradle? e.g. I would like to use single build system (Gradle) to build all my libs, gradle plugin and maven plugin. Any pointers would be appreciated! My current approach is to run
mvn
wrapper custom Gradle task but it still requires presence of project
pom.xml
so I could run
maven-plugin-plugin:descriptor
mojo. I’m trying to have Gradle control the dependency versions so I was thinking about running
mvn
with offline mode and configuring
pom.xml
to use dependencies with the provided scope (downloaded by Gradle).