is there any kind of interoperability b/w gradle (...
# gradle
s
is there any kind of interoperability b/w gradle (kotlin script) and maven? particularly if i have a parent library that adds phases and goals and such...that needs to be moved to gradle first before I move the child project, right?
d
gradle and maven are separate build tools
1
💯 1
"the best" you could do is run an Gradle exec task to invoke Maven from command line or vice versa
s
yeah i had a feeling it would be like that