-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
53 lines (43 loc) · 1.37 KB
/
Copy pathbuild.gradle
File metadata and controls
53 lines (43 loc) · 1.37 KB
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
buildscript {
rootProject.ext.ci = rootProject.hasProperty("ci")
apply from: rootProject.file("gradle/versions.gradle")
repositories {
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath plugs.gradle
classpath plugs.gradleAndroidCommandPlugin
classpath plugs.playPublisher
classpath plugs.buildScanPlugin
classpath plugs.dexcountGradlePlugin
classpath plugs.gradleAndroidApkSizePlugin
classpath plugs.coverallsGradlePlugin
classpath plugs.gradleErrorpronePlugin
classpath plugs.gradleVersionsPlugin
}
}
apply from: rootProject.file("gradle/scan.gradle")
apply plugin: "com.github.kt3k.coveralls"
apply plugin: "build-dashboard"
allprojects {
repositories {
maven { url "https://plugins.gradle.org/m2/" }
}
apply plugin: "net.ltgt.errorprone"
apply plugin: "com.github.ben-manes.versions"
apply from: rootProject.file("gradle/compile.gradle")
}
task wrapper(type: Wrapper) {
gradleVersion = "3.5"
distributionType = Wrapper.DistributionType.ALL
}
task clean(type: Delete) {
delete rootProject.buildDir
}
subprojects {
apply from: rootProject.file("gradle/quality.gradle")
}
// Only allows specifying of a single file
coveralls {
jacocoReportPath "$rootProject/android-app/reports/jacoco/jacocoReport/jacocoReport.xml"
}