If I have 10-15 3rd party dependencies that need to be included in X amount of Gradle projects, what is the best and most efficient way of doing that?
Option 1)
Copy/paste each dependency in each project's build.gradle. Lots of duplication of code.
Option 2)
Create a new project that includes all of these 3rd party dependencies, and replace the 3rd party dependency declarations in each of the projects' build.gradle with a dependency declaration for the new project. Still duplication of code, but much less than Option 1.
Option 3)
Something smarter, if it exists???