I have several JAR files, each with its own pom.xml file describing its dependencies. For example:
- one.jar depends on guava
- two.jar depends on one.jar and some other 3rd party
- three.jar depends on two.jar
I would like to create a project which depends on all those jars.
if it's a Maven project, then I simply install the JARs to my .m2 with their poms and Maven does all the rest for me.
The question is what is the correct way to create a Gradle project depended on those JARs?
(I'm a total rookie in Gradle, read some tutorials and been searching for ways to achieve this with no luck so far)
Thanks in advance.