forked from census-instrumentation/opencensus-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
257 lines (226 loc) · 9.26 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
buildscript {
repositories {
mavenCentral()
mavenLocal()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'ru.vyarus:gradle-animalsniffer-plugin:1.3.0'
classpath 'net.ltgt.gradle:gradle-errorprone-plugin:0.0.10'
classpath "net.ltgt.gradle:gradle-apt-plugin:0.10"
}
}
subprojects {
apply plugin: "checkstyle"
apply plugin: 'maven'
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: "signing"
apply plugin: "jacoco"
// The plugin only has an effect if a signature is specified
apply plugin: 'ru.vyarus.animalsniffer'
apply plugin: 'findbugs'
apply plugin: "net.ltgt.apt"
// Plugins that require java8
if (JavaVersion.current().isJava8Compatible()) {
// TODO(bdrutu): enable all checks.
apply plugin: "net.ltgt.errorprone"
}
group = "io.opencensus"
version = "0.6.0-SNAPSHOT" // CURRENT_OPENCENSUS_VERSION
sourceCompatibility = 1.6
targetCompatibility = 1.6
repositories {
mavenCentral()
mavenLocal()
}
[compileJava, compileTestJava].each() {
// We suppress the "processing" warning as suggested in
// https://groups.google.com/forum/#!topic/bazel-discuss/_R3A9TJSoPM
it.options.compilerArgs += ["-Xlint:all", "-Xlint:-try", "-Xlint:-processing"]
if (JavaVersion.current().isJava8Compatible()) {
// TODO(bdrutu): Read files directly instead of reading from properties.
if (rootProject.hasProperty("errorProneWarnings")) {
it.options.compilerArgs += rootProject.properties["errorProneWarnings"].split(',').collect {
it as String
}
}
if (rootProject.hasProperty("errorProneExperimentalErrors")) {
it.options.compilerArgs += rootProject.properties["errorProneExperimentalErrors"].split(',').collect {
it as String
}
}
if (rootProject.hasProperty("errorProneExperimentalWarnings")) {
it.options.compilerArgs += rootProject.properties["errorProneExperimentalWarnings"].split(',').collect {
it as String
}
}
if (rootProject.hasProperty("errorProneExperimentalSuggestions")) {
it.options.compilerArgs += rootProject.properties["errorProneExperimentalSuggestions"].split(',').collect {
it as String
}
}
}
it.options.encoding = "UTF-8"
// TODO(bdrutu): Enable when fix the issue with configuring bootstrap class.
// [options] bootstrap class path not set in conjunction with -source 1.6
if (JavaVersion.current().isJava8Compatible()) {
it.options.compilerArgs += ["-Werror"]
}
}
compileTestJava {
// serialVersionUID is basically guaranteed to be useless in tests
options.compilerArgs += ["-Xlint:-serial"]
// It undeprecates DoubleSubject.isEqualTo(Double).
options.compilerArgs += ["-Xlint:-deprecation"]
}
jar.manifest {
attributes('Implementation-Title': name,
'Implementation-Version': version,
'Built-By': System.getProperty('user.name'),
'Built-JDK': System.getProperty('java.version'),
'Source-Compatibility': sourceCompatibility,
'Target-Compatibility': targetCompatibility)
}
javadoc.options {
encoding = 'UTF-8'
links 'https://docs.oracle.com/javase/8/docs/api/'
}
ext {
autoValueVersion = '1.4'
findBugsVersion = '3.0.1'
grpcContextVersion = '1.4.0'
guavaVersion = '19.0'
libraries = [
auto_value : "com.google.auto.value:auto-value:${autoValueVersion}",
disruptor : 'com.lmax:disruptor:3.3.6',
errorprone : 'com.google.errorprone:error_prone_annotations:2.0.11',
grpc_context : "io.grpc:grpc-context:${grpcContextVersion}",
guava : "com.google.guava:guava:${guavaVersion}",
jsr305 : "com.google.code.findbugs:jsr305:${findBugsVersion}",
// Test dependencies.
guava_testlib : "com.google.guava:guava-testlib:${guavaVersion}",
junit : 'junit:junit:4.11',
mockito : 'org.mockito:mockito-core:1.9.5',
truth : 'com.google.truth:truth:0.30',
]
}
dependencies {
compile libraries.errorprone,
libraries.jsr305
testCompile libraries.guava_testlib,
libraries.junit,
libraries.mockito,
libraries.truth
if (JavaVersion.current().isJava8Compatible()) {
// The ErrorProne plugin defaults to the latest, which would break our
// build if error prone releases a new version with a new check
errorprone 'com.google.errorprone:error_prone_core:2.0.19'
}
}
findbugs {
toolVersion = findBugsVersion
ignoreFailures = false // bug free or it doesn't ship!
effort = 'max'
reportLevel = 'low' // low = sensitive to even minor mistakes
omitVisitors = [] // bugs that we want to ignore
excludeFilter = file("$rootDir/findbugs-exclude.xml")
}
// Generate html report for findbugs.
findbugsMain {
reports {
xml.enabled = false
html.enabled = true
}
}
// Disable findbugs for tests.
findbugsTest.enabled = false
checkstyle {
configFile = file("$rootDir/checkstyle.xml")
toolVersion = "7.6"
ignoreFailures = false
if (rootProject.hasProperty("checkstyle.ignoreFailures")) {
ignoreFailures = rootProject.properties["checkstyle.ignoreFailures"].toBoolean()
}
configProperties["rootDir"] = rootDir
}
checkstyleTest {
// TODO(sebright): Fix style errors in stats tests.
excludes = ["io/opencensus/stats/**"]
}
// Disable checkstyle if no java8.
checkstyleMain.enabled = JavaVersion.current().isJava8Compatible()
checkstyleTest.enabled = JavaVersion.current().isJava8Compatible()
signing {
required false
sign configurations.archives
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives javadocJar, sourcesJar
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
def configureAuth = {
if (rootProject.hasProperty('ossrhUsername') && rootProject.hasProperty('ossrhPassword')) {
authentication(userName:rootProject.ossrhUsername, password: rootProject.ossrhPassword)
}
}
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/", configureAuth)
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/", configureAuth)
pom.project {
name "OpenCensus"
packaging 'jar'
description project.description
url 'https://github.com/census-instrumentation/opencensus-java'
scm {
connection 'scm:svn:https://github.com/census-instrumentation/opencensus-java'
developerConnection 'scm:git:[email protected]/census-instrumentation/opencensus-java'
url 'https://github.com/census-instrumentation/opencensus-java'
}
licenses {
license {
name 'The Apache License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id 'io.opencensus'
name 'OpenCensus Contributors'
email '[email protected]'
url 'opencensus.io'
// https://issues.gradle.org/browse/GRADLE-2719
organization = 'Google, Inc.'
organizationUrl 'https://www.google.com'
}
}
}
}
}
}
// For the moment we upload only the artifact for the API
uploadArchives.onlyIf { name == 'opencensus-api' || name == 'opencensus-impl-core' || name == 'opencensus-impl-lite' || name == 'opencensus-impl' || name == 'opencensus-testing'}
// At a test failure, log the stack trace to the console so that we don't
// have to open the HTML in a browser.
test {
testLogging {
exceptionFormat = 'full'
showExceptions true
showCauses true
showStackTraces true
}
maxHeapSize = '1500m'
}
}