forked from square/affected-paths
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
31 lines (26 loc) · 727 Bytes
/
settings.gradle
File metadata and controls
31 lines (26 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import org.gradle.api.initialization.resolve.RepositoriesMode
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
google()
mavenCentral()
maven { url 'https://repo.gradle.org/gradle/libs-releases' }
}
}
includeBuild('plugins')
rootProject.name = "com.squareup.affected.paths"
include(':tooling:models')
include(':tooling:support')
include(':tooling:support:android')
include(':tooling:support:core')
include(':tooling:support:jvm')
include(':affected-paths:app')
include(':affected-paths:core')
include(':test-support')