<lambda>null1pluginManagement { 2 repositories { 3 google() 4 mavenCentral() 5 gradlePluginPortal() 6 } 7 } <lambda>null8dependencyResolutionManagement { 9 repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 10 repositories { 11 google() 12 mavenCentral() 13 } 14 } 15 16 rootProject.name = "dagger-parent" 17 includeProjectnull18fun includeProject(name: String, path: String) { 19 include(name) 20 project(name).projectDir = File(path) 21 } 22 23 includeProject(":dagger", "gradle-projects/dagger-runtime") 24