forked from bumptech/glide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
166 lines (142 loc) · 5.06 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import se.bjurr.violations.gradle.plugin.ViolationsTask
buildscript {
repositories {
google()
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
gradlePluginPortal()
}
dependencies {
classpath "com.android.tools.build:gradle:${ANDROID_GRADLE_VERSION}"
if (!hasProperty('DISABLE_ERROR_PRONE')) {
classpath "net.ltgt.gradle:gradle-errorprone-plugin:${ERROR_PRONE_PLUGIN_VERSION}"
}
classpath "se.bjurr.violations:violations-gradle-plugin:${VIOLATIONS_PLUGIN_VERSION}"
classpath "androidx.benchmark:benchmark-gradle-plugin:${ANDROID_X_BENCHMARK_VERSION}"
}
}
// See http://blog.joda.org/2014/02/turning-off-doclint-in-jdk-8-javadoc.html.
if (JavaVersion.current().isJava8Compatible()) {
allprojects {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
}
subprojects { project ->
repositories {
google()
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
gradlePluginPortal()
}
tasks.withType(JavaCompile) {
sourceCompatibility = 1.7
targetCompatibility = 1.7
options.setBootstrapClasspath(files("${System.getProperty('java.home')}/lib/rt.jar"))
// gifencoder is a legacy project that has a ton of warnings and is basically never
// modified, so we're not going to worry about cleaning it up.
// Imgur uses generated code from dagger that has warnings.
if ("gifencoder" != project.getName() && "imgur" != project.getName()) {
options.compilerArgs \
/*
* Treat all warnings as errors.
*/ \
<< "-Werror" \
/*
* Enable all warnings.
*/ \
<< "-Xlint:all" \
/*
* Java expects every annotation to have a processor, but we use
* javax.annotation.Nullable, which doesn't have one.
*/ \
<< "-Xlint:-processing" \
/*
* See https://github.com/google/dagger/issues/945
* and https://bugs.openjdk.java.net/browse/JDK-8190452
*/ \
<< "-Xlint:-classfile" \
/*
* Disable deprecation warnings for ViewTarget/BaseTarget for now.
*/ \
<< "-Xlint:-deprecation"
if (project.plugins.hasPlugin('net.ltgt.errorprone')) {
// It's often useful to track individual objects when debugging object pooling.
options.compilerArgs << "-Xep:ObjectToString:OFF"
}
}
}
tasks.withType(Test) {
testLogging {
exceptionFormat = TestExceptionFormat.FULL
}
}
// Avoid issues like #2452.
tasks.withType(Jar) {
duplicatesStrategy = DuplicatesStrategy.FAIL
}
apply plugin: 'checkstyle'
checkstyle {
toolVersion = '8.5'
}
checkstyle {
configFile = rootProject.file('checkstyle.xml')
configProperties.checkStyleConfigDir = rootProject.rootDir
}
task checkstyle(type: Checkstyle) {
source 'src'
include '**/*.java'
exclude '**/gen/**'
// Caught by the violations plugin.
ignoreFailures = true
// empty classpath
classpath = files()
}
apply plugin: "se.bjurr.violations.violations-gradle-plugin"
task violations(type: ViolationsTask) {
minSeverity 'INFO'
detailLevel 'VERBOSE'
maxViolations = 0
diffMaxViolations = 0
// Formats are listed here: https://github.com/tomasbjerre/violations-lib
def dir = projectDir.absolutePath
violations = [
["PMD", dir, ".*/pmd/.*\\.xml\$", "PMD"],
["ANDROIDLINT", dir, ".*/lint-results\\.xml\$", "AndroidLint"],
["CHECKSTYLE", dir, ".*/checkstyle/.*\\.xml\$", "Checkstyle"],
]
}
afterEvaluate {
if (project.hasProperty("android")
&& project.name != 'pmd' ) {
android {
lintOptions {
warningsAsErrors true
quiet true
// Caught by the violations plugin.
abortOnError false
}
}
android.variantFilter { variant ->
if(variant.buildType.name == 'release') {
variant.setIgnore(true)
}
}
}
if (project.tasks.findByName('check')) {
check.dependsOn('checkstyle')
check.finalizedBy violations
}
if (project.plugins.hasPlugin('com.android.library')) {
android.libraryVariants.all {
it.generateBuildConfigProvider.configure { enabled = false }
}
}
}
}