-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
build.gradle
45 lines (37 loc) · 986 Bytes
/
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
apply plugin: 'com.github.kt3k.coveralls'
buildscript {
apply from: "${rootDir}/gradle/dependencies.gradle"
repositories {
google()
mavenCentral()
maven { url 'https://plugins.gradle.org/m2' }
}
dependencies {
classpath pluginDependencies.gradle
classpath pluginDependencies.coveralls
classpath pluginDependencies.errorprone
classpath pluginDependencies.dependencyUpdates
classpath pluginDependencies.kotlinGradle
}
}
task testReport(type: TestReport, group: 'Build') {
description = 'Generates an aggregate test report'
destinationDir = file("${buildDir}/reports/allTests")
}
allprojects {
repositories {
google()
maven { url 'https://plugins.gradle.org/m2' }
}
}
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
}