-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
45 lines (37 loc) · 1.36 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
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
// Top-level build file where you can add configuration options common to all sub-projects/modules.
group = 'io.karn'
subprojects {
apply from: rootProject.file('gradle/configuration.gradle')
buildscript {
repositories {
google()
jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
dependencies {
classpath config.build.gradle.androidPlugin
classpath config.build.gradle.kotlin
// NOTE: Do not place your application configuration here; they belong
// in the individual module build.gradle files
classpath config.build.gradle.androidMaven
// Code coverage
classpath config.build.gradle.jacoco
// Library documentation
classpath config.build.gradle.dokka
}
}
repositories {
google()
jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
}
task wrapper(type: Wrapper) {
gradleVersion = '4.10.2'
distributionUrl = "https://services.gradle.org/distributions/gradle-$gradleVersion-all.zip"
}