trevjones
07/17/2017, 4:10 PMsettings.gradle
file. something like
def maybeIncludeProject(projectName, projectPath) {
if (file(projectPath).exists()) {
println "Including project '$projectName' @ '$projectPath'"
include projectName
project(projectName).projectDir = file(projectPath)
} else {
println "Project '$projectName' was not found @ '$projectPath'. Skipping inclusion."
}
}