gradle-plugin-git-dependencies
gradle-plugin-git-dependencies copied to clipboard
How to use module within dependency?
Great plugin & excuse me opening an issue but it seems a limitation. Say I have a gradle repo like this: https://github.com/ened/JazzyViewPager
/
/lib
/sample
The interesting module is /lib. How could I reference that module and ensure it becomes a dependency like other module dependencies using compile project(':moduleName')
Basically a syntax similar to this:
compile project(':lib', 'branch').ext.git = 'https://github.com/ened/JazzyViewPager.git'
Use module :lib out of branch branch from external git repository at https://...