in that case you can create a method in your `sett...
# gradle
t
in that case you can create a method in your
settings.gradle
file. something like
Copy code
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."
    }
}