-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
53 lines (48 loc) · 1.57 KB
/
build.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
apply plugin: "com.github.ben-manes.versions"
buildscript {
apply from: "$rootDir/gradle/dependencies.gradle"
repositories {
// prevent gradle from re-downloading kotlin/native's POM upon sync
// https://youtrack.jetbrains.com/issue/KT-28128
google()
mavenCentral()
jcenter()
maven { url 'https://dl.bintray.com/kotlin/kotlinx' }
maven { url 'https://dl.bintray.com/kotlin/ktor' }
maven { url 'https://dl.bintray.com/yshrsmz/kgql' }
// maven {
// url "file://${projectDir.absolutePath}/../BuildKonfig/build/localMaven"
// }
// maven {
// url "http://dl.bintray.com/kotlin/kotlin-eap"
// }
}
dependencies {
classpath deps.plugins.android
classpath deps.plugins.kotlin
classpath deps.plugins.serialization
classpath deps.plugins.versions
classpath deps.plugins.sqldelight
classpath deps.plugins.kgql
classpath deps.plugins.buildkonfig
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://dl.bintray.com/kotlin/kotlinx' }
maven { url 'https://dl.bintray.com/kotlin/ktor' }
maven { url 'https://dl.bintray.com/yshrsmz/kgql' }
maven { url 'https://dl.bintray.com/touchlabpublic/kotlin' }
// maven {
// url "http://dl.bintray.com/kotlin/kotlin-eap"
// }
jcenter()
}
}
wrapper {
gradleVersion = '5.1.1'
//noinspection UnnecessaryQualifiedReference
distributionType = Wrapper.DistributionType.ALL
}