Is it not possible in a Gradle multi-project setup to use external dependencies outside the main project folder?
Like in the settings.gradle
file, can
Assuming the following filesystem hierarchy:
|
\ workspace
|
\
MyProject
|
\
DependencyA
Add the following into your settings.gradle
in MyProject
:
include '..:DependencyA'
and inside your inner build.gradle
of MyProject
dependencies {
compile project(':..:DependencyA')
}
Repeat for as many projects as you have that depend on DependencyA
.