blob: 6bdef4231498ae0f72be67aa5facba49d2d41416 [file] [log] [blame]
Kun Zhang4bc2d6d2015-04-17 10:49:11 -07001buildscript {
2 repositories {
3 mavenCentral()
4 mavenLocal()
Eric Anderson675080b2017-02-24 14:53:23 -08005 maven {
6 url "https://plugins.gradle.org/m2/"
7 }
Kun Zhang4bc2d6d2015-04-17 10:49:11 -07008 }
9 dependencies {
nmittlerc4bcf142015-09-16 15:15:10 -070010 classpath 'com.google.gradle:osdetector-gradle-plugin:1.4.0'
Carl Mastrangelo8572f5f2017-07-18 13:53:45 -070011 classpath 'ru.vyarus:gradle-animalsniffer-plugin:1.4.0'
12 classpath 'net.ltgt.gradle:gradle-errorprone-plugin:0.0.11'
Eric Anderson6164b7b2017-08-26 17:10:18 -070013 classpath "me.champeau.gradle:jmh-gradle-plugin:0.4.4"
zpencera62108a2017-09-27 08:31:43 -070014 classpath 'me.champeau.gradle:japicmp-gradle-plugin:0.2.5'
Kun Zhang4bc2d6d2015-04-17 10:49:11 -070015 }
16}
Eric Andersonb938ba52015-02-28 09:59:25 -080017
Louis Ryan540b4d32015-09-04 13:26:24 -070018subprojects {
Eric Andersonc3e8dae2015-01-30 14:58:07 -080019 apply plugin: "checkstyle"
nathanmittler164b7342014-12-15 09:58:05 -080020 apply plugin: "java"
21 apply plugin: "maven"
nmittler52f42202015-01-21 14:30:14 -080022 apply plugin: "idea"
Eric Anderson192144e2015-03-02 13:31:14 -080023 apply plugin: "signing"
Eric Anderson041cdb12015-05-05 12:29:26 -070024 apply plugin: "jacoco"
nathanmittler164b7342014-12-15 09:58:05 -080025
Eric Anderson6164b7b2017-08-26 17:10:18 -070026 apply plugin: "me.champeau.gradle.jmh"
nmittlerc4bcf142015-09-16 15:15:10 -070027 apply plugin: "com.google.osdetector"
Eric Anderson42aa64c2017-02-02 13:48:12 -080028 // The plugin only has an effect if a signature is specified
29 apply plugin: "ru.vyarus.animalsniffer"
Eric Anderson675080b2017-02-24 14:53:23 -080030 if (!rootProject.hasProperty('errorProne') || rootProject.errorProne.toBoolean()) {
31 apply plugin: "net.ltgt.errorprone"
Eric Anderson982541b2017-04-26 13:33:27 -070032
33 dependencies {
34 // The ErrorProne plugin defaults to the latest, which would break our
35 // build if error prone releases a new version with a new check
Eric Andersoncbad9062017-07-06 17:15:20 -070036 errorprone 'com.google.errorprone:error_prone_core:2.0.21'
Eric Anderson982541b2017-04-26 13:33:27 -070037 }
38 } else {
39 // Remove per-project error-prone checker config
40 allprojects {
41 afterEvaluate { project ->
42 project.tasks.withType(JavaCompile) {
43 options.compilerArgs.removeAll { it.startsWith("-Xep:") }
44 }
45 }
46 }
Eric Anderson675080b2017-02-24 14:53:23 -080047 }
zpencer5713ebc2017-07-15 12:41:20 -070048 // TODO(zpencer): remove when intellij 2017.2 is released
49 // https://github.com/gradle/gradle/issues/2315
50 idea.module.inheritOutputDirs = true
nmittlerc4bcf142015-09-16 15:15:10 -070051
nmittlerf8314582015-01-27 10:25:39 -080052 group = "io.grpc"
zpencerab85c5a2017-08-22 12:29:03 -070053 version = "1.7.0-SNAPSHOT" // CURRENT_GRPC_VERSION
nathanmittler164b7342014-12-15 09:58:05 -080054
55 sourceCompatibility = 1.6
56 targetCompatibility = 1.6
57
58 repositories {
59 mavenCentral()
60 mavenLocal()
Kun Zhanga6653bb2017-09-25 15:38:48 -070061 maven {
62 url "https://oss.sonatype.org/content/repositories/snapshots/"
63 }
nathanmittler164b7342014-12-15 09:58:05 -080064 }
65
Eric Anderson6164b7b2017-08-26 17:10:18 -070066 [compileJava, compileTestJava, compileJmhJava].each() {
Eric Anderson675080b2017-02-24 14:53:23 -080067 it.options.compilerArgs += ["-Xlint:all", "-Xlint:-options", "-Xlint:-path"]
Eric Anderson76d09552015-03-12 15:25:11 -070068 it.options.encoding = "UTF-8"
Eric Anderson3c03eb72016-07-10 11:40:12 -070069 if (rootProject.hasProperty('failOnWarnings') && rootProject.failOnWarnings.toBoolean()) {
70 it.options.compilerArgs += ["-Werror"]
71 }
nmittler02c953e2015-01-26 14:03:11 -080072 }
73
Eric Anderson641cb352016-05-24 14:29:52 -070074 compileTestJava {
75 // serialVersionUID is basically guaranteed to be useless in our tests
76 options.compilerArgs += ["-Xlint:-serial"]
77 }
78
nmittler8c1d38a2015-06-01 08:31:00 -070079 jar.manifest {
80 attributes('Implementation-Title': name,
81 'Implementation-Version': version,
82 'Built-By': System.getProperty('user.name'),
83 'Built-JDK': System.getProperty('java.version'),
84 'Source-Compatibility': sourceCompatibility,
85 'Target-Compatibility': targetCompatibility)
86 }
87
Eric Anderson10fb2062015-05-05 10:28:38 -070088 javadoc.options {
89 encoding = 'UTF-8'
ZHANG Dapeng66ebcb12017-05-17 08:52:07 -070090 use = true
Eric Anderson10fb2062015-05-05 10:28:38 -070091 links 'https://docs.oracle.com/javase/8/docs/api/'
92 }
Eric Anderson14444a92015-03-11 16:44:38 -070093
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -080094 ext {
Kun Zhang6b1e7d62015-05-07 15:20:44 -070095 def exeSuffix = osdetector.os == 'windows' ? ".exe" : ""
96 protocPluginBaseName = 'protoc-gen-grpc-java'
Eric Anderson46ce4092016-01-26 12:13:06 -080097 javaPluginPath = "$rootDir/compiler/build/exe/java_plugin/$protocPluginBaseName$exeSuffix"
Kun Zhang6b1e7d62015-05-07 15:20:44 -070098
Carl Mastrangelo80334d52017-09-25 18:18:17 -070099 nettyVersion = '4.1.16.Final'
Eric Anderson2eeb5e32017-02-23 17:02:31 -0800100 guavaVersion = '19.0'
Carl Mastrangelo24ff2742017-08-25 11:25:36 -0700101 protobufVersion = '3.4.0'
102 protocVersion = protobufVersion
Kun Zhange2ed2e82016-01-27 08:26:19 -0800103 protobufNanoVersion = '3.0.0-alpha-5'
Kun Zhang6b1e7d62015-05-07 15:20:44 -0700104
Kun Zhang111f6dd2015-05-05 16:11:27 -0700105 configureProtoCompilation = {
Kun Zhang35f77ee2015-06-22 16:29:30 -0700106 String generatedSourcePath = "${projectDir}/src/generated"
Kun Zhang111f6dd2015-05-05 16:11:27 -0700107 if (rootProject.childProjects.containsKey('grpc-compiler')) {
108 // Only when the codegen is built along with the project, will we be able to recompile
109 // the proto files.
110 project.apply plugin: 'com.google.protobuf'
Kun Zhang35f77ee2015-06-22 16:29:30 -0700111 project.protobuf {
112 protoc {
113 if (project.hasProperty('protoc')) {
114 path = project.protoc
115 } else {
Carl Mastrangelo0fe2c5c2017-05-23 17:04:51 -0700116 artifact = "com.google.protobuf:protoc:${protocVersion}"
Kun Zhang35f77ee2015-06-22 16:29:30 -0700117 }
118 }
119 plugins {
120 grpc {
121 path = javaPluginPath
122 }
123 }
124 generateProtoTasks {
125 all().each { task ->
126 task.dependsOn ':grpc-compiler:java_pluginExecutable'
127 // Delete the generated sources first, so that we can be alerted if they are not re-compiled.
Eric Andersone9b4d152016-04-19 11:54:04 -0700128 task.dependsOn 'deleteGeneratedSource' + task.sourceSet.name
Kun Zhang35f77ee2015-06-22 16:29:30 -0700129 // Recompile protos when the codegen has been changed
130 task.inputs.file javaPluginPath
131 // Recompile protos when build.gradle has been changed, because
132 // it's possible the version of protoc has been changed.
133 task.inputs.file "${rootProject.projectDir}/build.gradle"
134 task.plugins {
ZHANG Dapenge1091252016-07-21 16:35:18 -0700135 grpc {
136 // To generate deprecated interfaces and static bindService method,
137 // turn the enable_deprecated option to true below:
138 option 'enable_deprecated=false'
Eric Anderson182164e2016-06-16 13:54:12 -0700139 option 'noversion'
ZHANG Dapenge1091252016-07-21 16:35:18 -0700140 }
Kun Zhang2cdc5e32015-05-11 16:58:28 -0700141 }
142 }
143 }
Kun Zhang35f77ee2015-06-22 16:29:30 -0700144 generatedFilesBaseDir = generatedSourcePath
145 }
146
Eric Andersone9b4d152016-04-19 11:54:04 -0700147 sourceSets.each { sourceSet ->
Carl Mastrangeloaaf90672017-03-23 18:02:35 -0700148 task "deleteGeneratedSource${sourceSet.name}" {
149 doLast {
150 project.delete project.fileTree(dir: generatedSourcePath + '/' + sourceSet.name)
151 }
Eric Andersone9b4d152016-04-19 11:54:04 -0700152 }
Kun Zhang2cdc5e32015-05-11 16:58:28 -0700153 }
Kun Zhang111f6dd2015-05-05 16:11:27 -0700154 } else {
155 // Otherwise, we just use the checked-in generated code.
156 project.sourceSets {
157 main {
158 java {
Kun Zhang35f77ee2015-06-22 16:29:30 -0700159 srcDir "${generatedSourcePath}/main/java"
Eric Andersoncea8e8e2015-10-27 19:53:18 -0700160 srcDir "${generatedSourcePath}/main/javanano"
Kun Zhang35f77ee2015-06-22 16:29:30 -0700161 srcDir "${generatedSourcePath}/main/grpc"
Kun Zhang287a27a2015-05-07 17:32:31 -0700162 }
Kun Zhang111f6dd2015-05-05 16:11:27 -0700163 }
Eric Andersoncea8e8e2015-10-27 19:53:18 -0700164 test {
165 java {
166 srcDir "${generatedSourcePath}/test/java"
167 srcDir "${generatedSourcePath}/test/javanano"
168 srcDir "${generatedSourcePath}/test/grpc"
169 }
170 }
Kun Zhang111f6dd2015-05-05 16:11:27 -0700171 }
172 }
Eric Andersondbef1af2016-05-23 12:05:41 -0700173
Eric Anderson6164b7b2017-08-26 17:10:18 -0700174 [compileJava, compileTestJava, compileJmhJava].each() {
Eric Andersondbef1af2016-05-23 12:05:41 -0700175 // Protobuf-generated code produces some warnings.
Eric Anderson675080b2017-02-24 14:53:23 -0800176 // https://github.com/google/protobuf/issues/2718
177 it.options.compilerArgs += ["-Xlint:-cast", "-Xep:MissingOverride:OFF",
178 "-Xep:ReferenceEquality:OFF", "-Xep:FunctionalInterfaceClash:OFF"]
Eric Andersondbef1af2016-05-23 12:05:41 -0700179 }
Kun Zhang111f6dd2015-05-05 16:11:27 -0700180 }
181
Eric Anderson65d73c02015-05-21 11:54:04 -0700182 def epoll_suffix = "";
183 if (osdetector.classifier in ["linux-x86_64"]) {
184 // The native code is only pre-compiled on certain platforms.
185 epoll_suffix = ":" + osdetector.classifier
186 }
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -0800187 libraries = [
Carl Mastrangeloee12cc22017-03-22 22:09:04 -0700188 errorprone: "com.google.errorprone:error_prone_annotations:2.0.19",
Carl Mastrangelo28253612016-05-16 10:23:53 -0700189 guava: "com.google.guava:guava:${guavaVersion}",
Jeff Pinnerb1cc7cc2015-02-25 10:17:23 -0800190 hpack: 'com.twitter:hpack:0.10.1',
nmittlerb897a892015-02-23 12:03:59 -0800191 jsr305: 'com.google.code.findbugs:jsr305:3.0.0',
Eric Gribkoff7c605102017-07-06 13:22:43 -0700192 oauth_client: 'com.google.auth:google-auth-library-oauth2-http:0.7.0',
Eric Gribkoffdf694852017-05-01 14:43:53 -0700193 google_api_protos: 'com.google.api.grpc:proto-google-common-protos:0.1.9',
Kun Zhangdef237d2016-06-14 13:51:24 -0700194 google_auth_credentials: 'com.google.auth:google-auth-library-credentials:0.4.0',
Xudong Ma6d296e82015-09-21 10:39:00 -0700195 okhttp: 'com.squareup.okhttp:okhttp:2.5.0',
Xudong Mab121c462015-09-21 12:54:06 -0700196 okio: 'com.squareup.okio:okio:1.6.0',
Kun Zhanga6653bb2017-09-25 15:38:48 -0700197 opencensus_api: 'io.opencensus:opencensus-api:0.7.0',
198 opencensus_impl: 'io.opencensus:opencensus-impl:0.7.0',
Yang Song4a0cf0b2017-06-06 18:16:55 -0700199 instrumentation_api: 'com.google.instrumentation:instrumentation-api:0.4.3',
Kun Zhangc5b94c72015-05-06 16:44:55 -0700200 protobuf: "com.google.protobuf:protobuf-java:${protobufVersion}",
Eric Andersona8700a72016-07-29 11:57:41 -0700201 protobuf_lite: "com.google.protobuf:protobuf-lite:3.0.1",
Eric Andersonb1d72e52016-09-27 17:15:12 -0700202 protoc_lite: "com.google.protobuf:protoc-gen-javalite:3.0.0",
Kun Zhangbd23a8d2015-08-28 18:47:06 -0700203 protobuf_nano: "com.google.protobuf.nano:protobuf-javanano:${protobufNanoVersion}",
Carl Mastrangelod34260a2017-07-14 12:35:14 -0700204 protobuf_plugin: 'com.google.protobuf:protobuf-gradle-plugin:0.8.1',
Carl Mastrangelo8e1fba72016-03-02 09:30:35 -0800205 protobuf_util: "com.google.protobuf:protobuf-java-util:${protobufVersion}",
nathanmittler164b7342014-12-15 09:58:05 -0800206
Łukasz Strzałkowski67eefa62017-05-15 10:57:43 -0700207 netty: "io.netty:netty-codec-http2:[${nettyVersion}]",
208 netty_epoll: "io.netty:netty-transport-native-epoll:${nettyVersion}" + epoll_suffix,
209 netty_proxy_handler: "io.netty:netty-handler-proxy:${nettyVersion}",
Eric Anderson97c625f2017-08-24 11:05:17 -0700210 netty_tcnative: 'io.netty:netty-tcnative-boringssl-static:2.0.6.Final',
nathanmittler164b7342014-12-15 09:58:05 -0800211
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -0800212 // Test dependencies.
213 junit: 'junit:junit:4.11',
Carl Mastrangelob3bc7fc2016-04-01 15:18:23 -0700214 mockito: 'org.mockito:mockito-core:1.9.5',
Louis Ryana7049bc2016-03-23 13:18:04 -0700215 truth: 'com.google.truth:truth:0.28',
216
217 // Benchmark dependencies
218 hdrhistogram: 'org.hdrhistogram:HdrHistogram:2.1.8',
219 math: 'org.apache.commons:commons-math3:3.6',
ZHANG Dapengaed886d2016-05-02 14:01:36 -0700220
221 // Jetty ALPN dependencies
Eric Anderson308b6ea2017-03-13 10:13:42 -0700222 jetty_alpn_agent: 'org.mortbay.jetty.alpn:jetty-alpn-agent:2.0.6'
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -0800223 ]
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -0800224 }
nathanmittler164b7342014-12-15 09:58:05 -0800225
ZHANG Dapengaed886d2016-05-02 14:01:36 -0700226 // Define a separate configuration for managing the dependency on Jetty ALPN agent.
nmittler74cfe6c2015-05-22 12:25:10 -0700227 configurations {
ZHANG Dapengaed886d2016-05-02 14:01:36 -0700228 alpnagent
Eric Andersona3ff9cd2017-09-18 16:20:18 -0700229
230 compile {
231 // Detect Maven Enforcer's dependencyConvergence failures. We only
232 // care for artifacts used as libraries by others.
233 if (!(project.name in ['grpc-benchmarks', 'grpc-interop-testing'])) {
234 resolutionStrategy.failOnVersionConflict()
235 }
236 }
nmittler74cfe6c2015-05-22 12:25:10 -0700237 }
238
nathanmittler164b7342014-12-15 09:58:05 -0800239 dependencies {
240 testCompile libraries.junit,
Eric Andersona3ff9cd2017-09-18 16:20:18 -0700241 libraries.mockito,
242 libraries.truth
nmittler74cfe6c2015-05-22 12:25:10 -0700243
ZHANG Dapengaed886d2016-05-02 14:01:36 -0700244 // Configuration for modules that use Jetty ALPN agent
245 alpnagent libraries.jetty_alpn_agent
Eric Anderson6164b7b2017-08-26 17:10:18 -0700246
247 jmh 'org.openjdk.jmh:jmh-core:1.19',
248 'org.openjdk.jmh:jmh-generator-bytecode:1.19'
nathanmittler164b7342014-12-15 09:58:05 -0800249 }
Eric Anderson192144e2015-03-02 13:31:14 -0800250
251 signing {
252 required false
253 sign configurations.archives
254 }
255
nmittler732cfc02015-03-03 07:59:13 -0800256 // Disable JavaDoc doclint on Java 8. It's annoying.
257 if (JavaVersion.current().isJava8Compatible()) {
258 allprojects {
259 tasks.withType(Javadoc) {
260 options.addStringOption('Xdoclint:none', '-quiet')
261 }
262 }
263 }
264
Eric Andersonc3e8dae2015-01-30 14:58:07 -0800265 checkstyle {
Eric Andersone6d00622017-07-07 10:57:03 -0700266 configFile = file("$rootDir/buildscripts/checkstyle.xml")
Eric Anderson6ab27ab2016-04-18 09:15:25 -0700267 toolVersion = "6.17"
Eric Andersonad44f0a2015-05-05 08:54:51 -0700268 ignoreFailures = false
Eric Anderson26141b42015-03-21 10:59:17 -0700269 if (rootProject.hasProperty("checkstyle.ignoreFailures")) {
270 ignoreFailures = rootProject.properties["checkstyle.ignoreFailures"].toBoolean()
271 }
Eric Andersonefa774b2015-09-15 10:34:14 -0700272 configProperties["rootDir"] = rootDir
Eric Andersonc3e8dae2015-01-30 14:58:07 -0800273 }
274
275 checkstyleMain {
Kun Zhang693a7d22015-05-06 11:35:08 -0700276 source = fileTree(dir: "src/main", include: "**/*.java")
Eric Andersonc3e8dae2015-01-30 14:58:07 -0800277 }
278
279 checkstyleTest {
Kun Zhang693a7d22015-05-06 11:35:08 -0700280 source = fileTree(dir: "src/test", include: "**/*.java")
Eric Andersonc3e8dae2015-01-30 14:58:07 -0800281 }
282
Eric Anderson6164b7b2017-08-26 17:10:18 -0700283 jmh {
284 warmupIterations = 10
285 iterations = 10
286 fork = 1
287 // None of our benchmarks need the tests, and we have pseudo-circular
288 // dependencies that break when including them. (context's testCompile
289 // depends on core; core's testCompile depends on testing)
290 includeTests = false
291 }
292
Eric Anderson192144e2015-03-02 13:31:14 -0800293 task javadocJar(type: Jar) {
294 classifier = 'javadoc'
295 from javadoc
296 }
297
298 task sourcesJar(type: Jar) {
299 classifier = 'sources'
300 from sourceSets.main.allSource
301 }
302
303 artifacts {
304 archives javadocJar, sourcesJar
305 }
306
307 uploadArchives.repositories.mavenDeployer {
308 beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
zhangkun83da3c3f82015-03-11 18:03:31 -0700309 String stagingUrl
Kun Zhang2f749712015-05-06 13:10:28 -0700310 if (rootProject.hasProperty('repositoryId')) {
311 stagingUrl = 'https://oss.sonatype.org/service/local/staging/deployByRepositoryId/' +
312 rootProject.repositoryId
zhangkun83da3c3f82015-03-11 18:03:31 -0700313 } else {
314 stagingUrl = 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
315 }
Kun Zhang2f749712015-05-06 13:10:28 -0700316 def configureAuth = {
317 if (rootProject.hasProperty('ossrhUsername') && rootProject.hasProperty('ossrhPassword')) {
318 authentication(userName: rootProject.ossrhUsername, password: rootProject.ossrhPassword)
319 }
Eric Anderson192144e2015-03-02 13:31:14 -0800320 }
Kun Zhang2f749712015-05-06 13:10:28 -0700321 repository(url: stagingUrl, configureAuth)
322 snapshotRepository(url: 'https://oss.sonatype.org/content/repositories/snapshots/', configureAuth)
Eric Anderson192144e2015-03-02 13:31:14 -0800323 }
Carl Mastrangelo4988d8b2017-01-19 12:48:55 -0800324 uploadArchives.onlyIf { !name.contains("thrift") }
Eric Anderson192144e2015-03-02 13:31:14 -0800325
326 [
327 install.repositories.mavenInstaller,
328 uploadArchives.repositories.mavenDeployer,
329 ]*.pom*.whenConfigured { pom ->
330 pom.project {
Eric Anderson7e8a02c2015-03-12 17:03:01 -0700331 name "$project.group:$project.name"
Eric Anderson192144e2015-03-02 13:31:14 -0800332 description project.description
333 url 'https://github.com/grpc/grpc-java'
334
335 scm {
Eric Andersonb7354952016-04-08 08:37:07 -0700336 connection 'scm:git:https://github.com/grpc/grpc-java.git'
337 developerConnection 'scm:git:git@github.com:grpc/grpc-java.git'
Eric Anderson192144e2015-03-02 13:31:14 -0800338 url 'https://github.com/grpc/grpc-java'
339 }
340
341 licenses {
342 license {
Carl Mastrangelo7b97df02017-05-31 14:37:42 -0700343 name 'Apache 2.0'
344 url 'https://opensource.org/licenses/Apache-2.0'
Eric Anderson192144e2015-03-02 13:31:14 -0800345 }
346 }
Eric Anderson7e8a02c2015-03-12 17:03:01 -0700347
348 developers {
349 developer {
350 id "grpc.io"
351 name "gRPC Contributors"
352 email "grpc-io@googlegroups.com"
Mehrdad Afshari8ce0bc22017-07-10 22:48:17 +0000353 url "https://grpc.io/"
Eric Anderson7e8a02c2015-03-12 17:03:01 -0700354 // https://issues.gradle.org/browse/GRADLE-2719
Carl Mastrangelo3bfd6302017-05-31 13:29:01 -0700355 organization = "gRPC Authors"
Eric Anderson7e8a02c2015-03-12 17:03:01 -0700356 organizationUrl "https://www.google.com"
357 }
358 }
Eric Anderson192144e2015-03-02 13:31:14 -0800359 }
Eric Anderson90db93b2016-04-08 13:47:30 -0700360 if (!(project.name in
zpencerb8b5f5e2017-09-08 16:33:27 -0700361 ["grpc-stub", "grpc-protobuf", "grpc-protobuf-lite", "grpc-protobuf-nano", "grpc-thrift"])) {
Eric Anderson90db93b2016-04-08 13:47:30 -0700362 def core = pom.dependencies.find {dep -> dep.artifactId == 'grpc-core'}
363 if (core != null) {
364 // Depend on specific version of grpc-core because internal package is unstable
365 core.version = "[" + core.version + "]"
366 }
367 }
Eric Anderson192144e2015-03-02 13:31:14 -0800368 }
Kun Zhang3ddd1d52015-04-22 10:02:19 -0700369 // At a test failure, log the stack trace to the console so that we don't
370 // have to open the HTML in a browser.
371 test {
372 testLogging {
373 exceptionFormat = 'full'
nmittler4ee2a652015-06-01 16:20:08 -0700374 showExceptions true
375 showCauses true
376 showStackTraces true
Kun Zhang3ddd1d52015-04-22 10:02:19 -0700377 }
Eric Anderson56dca032016-02-12 08:48:41 -0800378 maxHeapSize = '1500m'
Kun Zhang3ddd1d52015-04-22 10:02:19 -0700379 }
nathanmittler164b7342014-12-15 09:58:05 -0800380}
zpencera62108a2017-09-27 08:31:43 -0700381
382// Run with: ./gradlew japicmp --continue
383def baselineGrpcVersion = '1.6.1'
384def publicApiSubprojects = [
385 ':grpc-auth',
386 ':grpc-context',
387 ':grpc-core',
388 ':grpc-grpclb',
389 ':grpc-netty',
390 ':grpc-okhttp',
391 ':grpc-protobuf',
392 ':grpc-protobuf-lite',
393 ':grpc-protobuf-nano',
394 ':grpc-stub',
395 ':grpc-testing',
396]
397
398publicApiSubprojects.each { name ->
399 project(":$name") {
400 apply plugin: 'me.champeau.gradle.japicmp'
401
402 // Get the baseline version's jar for this subproject
403 File baselineArtifact = null
404 // Use a detached configuration, otherwise the current version's jar will take precedence
405 // over the baseline jar.
406 // A necessary hack, the intuitive thing does NOT work:
407 // https://discuss.gradle.org/t/is-the-default-configuration-leaking-into-independent-configurations/2088/6
408 def oldGroup = project.group
409 try {
410 project.group = 'virtual_group_for_japicmp'
411 String depModule = "io.grpc:${project.name}:${baselineGrpcVersion}@jar"
412 String depJar = "${project.name}-${baselineGrpcVersion}.jar"
413 Configuration configuration = configurations.detachedConfiguration(
414 dependencies.create(depModule)
415 )
416 baselineArtifact = files(configuration.files).filter {
417 it.name.equals(depJar)
418 }.singleFile
419 } finally {
420 project.group = oldGroup
421 }
422
423 // Add a japicmp task that compares the current .jar with baseline .jar
424 task japicmp(type: me.champeau.gradle.japicmp.JapicmpTask, dependsOn: jar) {
425 oldClasspath = files(baselineArtifact)
426 newClasspath = files(jar.archivePath)
427 onlyBinaryIncompatibleModified = false
428 // Be quiet about things that did not change
429 onlyModified = true
430 // This task should fail if there are incompatible changes
431 failOnModification = true
432 ignoreMissingClasses = true
433 htmlOutputFile = file("$buildDir/reports/japi.html")
434
435 packageExcludes = ['io.grpc.internal']
436
437 // Also break on source incompatible changes, not just binary.
438 // Eg adding abstract method to public class.
439 // TODO(zpencer): enable after japicmp-gradle-plugin/pull/14
440 // breakOnSourceIncompatibility = true
441
442 // Ignore any classes or methods marked @ExperimentalApi
443 // TODO(zpencer): enable after japicmp-gradle-plugin/pull/15
444 // annotationExcludes = ['@io.grpc.ExperimentalApi']
445 }
446 }
447}