-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
settings.gradle
29 lines (27 loc) · 897 Bytes
/
settings.gradle
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
pluginManagement {
repositories {
// maven {
// url "https://dl.bintray.com/kotlin/kotlin-eap/"
// }
maven {
url "https://plugins.gradle.org/m2/"
}
google()
mavenCentral()
jcenter()
}
}
rootProject.name = 'scratch'
enableFeaturePreview('GRADLE_METADATA')
include ':scratch:base'
project(":scratch:base").projectDir = new File("./base")
include ':scratch:atomic'
project(":scratch:atomic").projectDir = new File("./atomic")
include ':scratch:buffer'
project(":scratch:buffer").projectDir = new File("./buffer")
include ':scratch:core'
project(":scratch:core").projectDir = new File("./core")
include ':scratch:core-android-extensions'
project(":scratch:core-android-extensions").projectDir = new File("./core-android-extensions")
include ':scratch:http'
project(":scratch:http").projectDir = new File("./http")