-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
61 lines (53 loc) · 1.68 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
54
55
56
57
58
59
60
61
apply plugin: 'com.github.kt3k.coveralls'
apply plugin: 'jacoco'
buildscript {
ext.kotlin_version = '1.4.32'
apply from: "${rootDir}/gradle/dependencies.gradle"
repositories {
google()
mavenCentral()
jcenter()
maven { url 'https://plugins.gradle.org/m2' }
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath pluginDependencies.gradle
classpath pluginDependencies.kotlin
classpath pluginDependencies.coveralls
classpath pluginDependencies.errorprone
classpath pluginDependencies.dependencyUpdates
classpath pluginDependencies.jacoco
classpath pluginDependencies.mapboxSdkVersions
classpath pluginDependencies.bintray
classpath pluginDependencies.artifactory
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
task testReport(type: TestReport, group: 'Build') {
description = 'Generates an aggregate test report'
destinationDir = file("${buildDir}/reports/allTests")
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
maven { url 'https://mapbox.bintray.com/mapbox' }
maven { url 'https://plugins.gradle.org/m2' }
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
group = GROUP
version = VERSION_NAME
}
subprojects {
apply plugin: 'idea'
apply plugin: 'net.ltgt.errorprone'
apply from: "${rootDir}/gradle/dependencies.gradle"
dependencies {
errorprone dependenciesList.errorprone
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}