• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download

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