forked from mapbox/mapbox-navigation-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
50 lines (41 loc) · 1.03 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
apply plugin: 'com.github.kt3k.coveralls'
apply plugin: 'jacoco'
buildscript {
apply from: "${rootDir}/gradle/dependencies.gradle"
repositories {
maven { url 'https://plugins.gradle.org/m2' }
google()
jcenter()
}
dependencies {
classpath pluginDependencies.gradle
classpath pluginDependencies.sonarqube
classpath pluginDependencies.coveralls
classpath pluginDependencies.errorprone
}
}
task testReport(type: TestReport, group: 'Build') {
description = 'Generates an aggregate test report'
destinationDir = file("${buildDir}/reports/allTests")
}
allprojects {
repositories {
maven { url 'https://plugins.gradle.org/m2' }
google()
jcenter()
}
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
}
apply from: "${rootDir}/gradle/sonarqube.gradle"