blob: a6fce8b591237de5db0c02e3dc1e478693a7a9b4 [file] [log] [blame]
Kun Zhang4bc2d6d2015-04-17 10:49:11 -07001buildscript {
2 repositories {
3 mavenCentral()
4 mavenLocal()
5 }
6 dependencies {
nmittlerc4bcf142015-09-16 15:15:10 -07007 classpath 'com.google.gradle:osdetector-gradle-plugin:1.4.0'
Kun Zhang4bc2d6d2015-04-17 10:49:11 -07008 }
9}
Eric Andersonb938ba52015-02-28 09:59:25 -080010
Louis Ryan540b4d32015-09-04 13:26:24 -070011subprojects {
Eric Andersonc3e8dae2015-01-30 14:58:07 -080012 apply plugin: "checkstyle"
nathanmittler164b7342014-12-15 09:58:05 -080013 apply plugin: "java"
14 apply plugin: "maven"
nmittler52f42202015-01-21 14:30:14 -080015 apply plugin: "idea"
Eric Anderson192144e2015-03-02 13:31:14 -080016 apply plugin: "signing"
Eric Anderson041cdb12015-05-05 12:29:26 -070017 apply plugin: "jacoco"
nathanmittler164b7342014-12-15 09:58:05 -080018
nmittlerc4bcf142015-09-16 15:15:10 -070019 apply plugin: "com.google.osdetector"
nmittlerc4bcf142015-09-16 15:15:10 -070020
nmittlerf8314582015-01-27 10:25:39 -080021 group = "io.grpc"
Eric Andersone9643bb2016-07-11 16:57:58 -070022 version = "1.1.0-SNAPSHOT" // CURRENT_GRPC_VERSION
nathanmittler164b7342014-12-15 09:58:05 -080023
24 sourceCompatibility = 1.6
25 targetCompatibility = 1.6
26
27 repositories {
28 mavenCentral()
29 mavenLocal()
30 }
31
Eric Anderson76d09552015-03-12 15:25:11 -070032 [compileJava, compileTestJava].each() {
Eric Anderson641cb352016-05-24 14:29:52 -070033 it.options.compilerArgs += ["-Xlint:all", "-Xlint:-options"]
Eric Anderson76d09552015-03-12 15:25:11 -070034 it.options.encoding = "UTF-8"
Eric Anderson3c03eb72016-07-10 11:40:12 -070035 if (rootProject.hasProperty('failOnWarnings') && rootProject.failOnWarnings.toBoolean()) {
36 it.options.compilerArgs += ["-Werror"]
37 }
nmittler02c953e2015-01-26 14:03:11 -080038 }
39
Eric Anderson641cb352016-05-24 14:29:52 -070040 compileTestJava {
41 // serialVersionUID is basically guaranteed to be useless in our tests
42 options.compilerArgs += ["-Xlint:-serial"]
43 }
44
nmittler8c1d38a2015-06-01 08:31:00 -070045 jar.manifest {
46 attributes('Implementation-Title': name,
47 'Implementation-Version': version,
48 'Built-By': System.getProperty('user.name'),
49 'Built-JDK': System.getProperty('java.version'),
50 'Source-Compatibility': sourceCompatibility,
51 'Target-Compatibility': targetCompatibility)
52 }
53
Eric Anderson10fb2062015-05-05 10:28:38 -070054 javadoc.options {
55 encoding = 'UTF-8'
56 links 'https://docs.oracle.com/javase/8/docs/api/'
57 }
Eric Anderson14444a92015-03-11 16:44:38 -070058
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -080059 ext {
Kun Zhang6b1e7d62015-05-07 15:20:44 -070060 def exeSuffix = osdetector.os == 'windows' ? ".exe" : ""
61 protocPluginBaseName = 'protoc-gen-grpc-java'
Eric Anderson46ce4092016-01-26 12:13:06 -080062 javaPluginPath = "$rootDir/compiler/build/exe/java_plugin/$protocPluginBaseName$exeSuffix"
Kun Zhang6b1e7d62015-05-07 15:20:44 -070063
Carl Mastrangelo28253612016-05-16 10:23:53 -070064 guavaVersion = '19.0'
Eric Andersondbef1af2016-05-23 12:05:41 -070065 protobufVersion = '3.0.0-beta-3'
Kun Zhange2ed2e82016-01-27 08:26:19 -080066 protobufNanoVersion = '3.0.0-alpha-5'
Kun Zhang6b1e7d62015-05-07 15:20:44 -070067
Kun Zhang111f6dd2015-05-05 16:11:27 -070068 configureProtoCompilation = {
Kun Zhang35f77ee2015-06-22 16:29:30 -070069 String generatedSourcePath = "${projectDir}/src/generated"
Kun Zhang111f6dd2015-05-05 16:11:27 -070070 if (rootProject.childProjects.containsKey('grpc-compiler')) {
71 // Only when the codegen is built along with the project, will we be able to recompile
72 // the proto files.
73 project.apply plugin: 'com.google.protobuf'
Kun Zhang35f77ee2015-06-22 16:29:30 -070074 project.protobuf {
75 protoc {
76 if (project.hasProperty('protoc')) {
77 path = project.protoc
78 } else {
79 artifact = "com.google.protobuf:protoc:${protobufVersion}"
80 }
81 }
82 plugins {
83 grpc {
84 path = javaPluginPath
85 }
86 }
87 generateProtoTasks {
88 all().each { task ->
89 task.dependsOn ':grpc-compiler:java_pluginExecutable'
90 // Delete the generated sources first, so that we can be alerted if they are not re-compiled.
Eric Andersone9b4d152016-04-19 11:54:04 -070091 task.dependsOn 'deleteGeneratedSource' + task.sourceSet.name
Kun Zhang35f77ee2015-06-22 16:29:30 -070092 // Recompile protos when the codegen has been changed
93 task.inputs.file javaPluginPath
94 // Recompile protos when build.gradle has been changed, because
95 // it's possible the version of protoc has been changed.
96 task.inputs.file "${rootProject.projectDir}/build.gradle"
97 task.plugins {
ZHANG Dapenge1091252016-07-21 16:35:18 -070098 grpc {
99 // To generate deprecated interfaces and static bindService method,
100 // turn the enable_deprecated option to true below:
101 option 'enable_deprecated=false'
102 }
Kun Zhang2cdc5e32015-05-11 16:58:28 -0700103 }
104 }
105 }
Kun Zhang35f77ee2015-06-22 16:29:30 -0700106 generatedFilesBaseDir = generatedSourcePath
107 }
108
Eric Andersone9b4d152016-04-19 11:54:04 -0700109 sourceSets.each { sourceSet ->
110 task "deleteGeneratedSource${sourceSet.name}" << {
111 project.delete project.fileTree(dir: generatedSourcePath + '/' + sourceSet.name)
112 }
Kun Zhang2cdc5e32015-05-11 16:58:28 -0700113 }
Kun Zhang111f6dd2015-05-05 16:11:27 -0700114 } else {
115 // Otherwise, we just use the checked-in generated code.
116 project.sourceSets {
117 main {
118 java {
Kun Zhang35f77ee2015-06-22 16:29:30 -0700119 srcDir "${generatedSourcePath}/main/java"
Eric Andersoncea8e8e2015-10-27 19:53:18 -0700120 srcDir "${generatedSourcePath}/main/javanano"
Kun Zhang35f77ee2015-06-22 16:29:30 -0700121 srcDir "${generatedSourcePath}/main/grpc"
Kun Zhang287a27a2015-05-07 17:32:31 -0700122 }
Kun Zhang111f6dd2015-05-05 16:11:27 -0700123 }
Eric Andersoncea8e8e2015-10-27 19:53:18 -0700124 test {
125 java {
126 srcDir "${generatedSourcePath}/test/java"
127 srcDir "${generatedSourcePath}/test/javanano"
128 srcDir "${generatedSourcePath}/test/grpc"
129 }
130 }
Kun Zhang111f6dd2015-05-05 16:11:27 -0700131 }
132 }
Eric Andersondbef1af2016-05-23 12:05:41 -0700133
134 compileJava {
135 // Protobuf-generated code produces some warnings.
136 options.compilerArgs = compileJava.options.compilerArgs + ["-Xlint:-deprecation"]
137 }
Kun Zhang111f6dd2015-05-05 16:11:27 -0700138 }
139
Eric Anderson65d73c02015-05-21 11:54:04 -0700140 def epoll_suffix = "";
141 if (osdetector.classifier in ["linux-x86_64"]) {
142 // The native code is only pre-compiled on certain platforms.
143 epoll_suffix = ":" + osdetector.classifier
144 }
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -0800145 libraries = [
Carl Mastrangelo28253612016-05-16 10:23:53 -0700146 guava: "com.google.guava:guava:${guavaVersion}",
Jeff Pinnerb1cc7cc2015-02-25 10:17:23 -0800147 hpack: 'com.twitter:hpack:0.10.1',
nmittlerb897a892015-02-23 12:03:59 -0800148 jsr305: 'com.google.code.findbugs:jsr305:3.0.0',
Kun Zhangdef237d2016-06-14 13:51:24 -0700149 oauth_client: 'com.google.auth:google-auth-library-oauth2-http:0.4.0',
150 google_auth_credentials: 'com.google.auth:google-auth-library-credentials:0.4.0',
Xudong Ma6d296e82015-09-21 10:39:00 -0700151 okhttp: 'com.squareup.okhttp:okhttp:2.5.0',
Xudong Mab121c462015-09-21 12:54:06 -0700152 okio: 'com.squareup.okio:okio:1.6.0',
Kun Zhangc5b94c72015-05-06 16:44:55 -0700153 protobuf: "com.google.protobuf:protobuf-java:${protobufVersion}",
Kun Zhangbd23a8d2015-08-28 18:47:06 -0700154 protobuf_nano: "com.google.protobuf.nano:protobuf-javanano:${protobufNanoVersion}",
Eric Anderson446f0cb2016-05-07 11:24:15 -0700155 protobuf_plugin: 'com.google.protobuf:protobuf-gradle-plugin:0.7.7',
Carl Mastrangelo8e1fba72016-03-02 09:30:35 -0800156 protobuf_util: "com.google.protobuf:protobuf-java-util:${protobufVersion}",
nathanmittler164b7342014-12-15 09:58:05 -0800157
Jakob Buchgraber0ad59482016-07-18 19:21:26 +0200158 netty: 'io.netty:netty-codec-http2:[4.1.3.Final]',
159 netty_epoll: 'io.netty:netty-transport-native-epoll:4.1.3.Final' + epoll_suffix,
160 netty_tcnative: 'io.netty:netty-tcnative-boringssl-static:1.1.33.Fork19',
nathanmittler164b7342014-12-15 09:58:05 -0800161
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -0800162 // Test dependencies.
163 junit: 'junit:junit:4.11',
Carl Mastrangelob3bc7fc2016-04-01 15:18:23 -0700164 mockito: 'org.mockito:mockito-core:1.9.5',
Louis Ryana7049bc2016-03-23 13:18:04 -0700165 truth: 'com.google.truth:truth:0.28',
166
167 // Benchmark dependencies
168 hdrhistogram: 'org.hdrhistogram:HdrHistogram:2.1.8',
169 math: 'org.apache.commons:commons-math3:3.6',
ZHANG Dapengaed886d2016-05-02 14:01:36 -0700170
171 // Jetty ALPN dependencies
Eric Andersonaa92d6c2016-05-19 11:41:03 -0700172 jetty_alpn_agent: 'org.mortbay.jetty.alpn:jetty-alpn-agent:2.0.3'
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -0800173 ]
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -0800174 }
nathanmittler164b7342014-12-15 09:58:05 -0800175
ZHANG Dapengaed886d2016-05-02 14:01:36 -0700176 // Define a separate configuration for managing the dependency on Jetty ALPN agent.
nmittler74cfe6c2015-05-22 12:25:10 -0700177 configurations {
ZHANG Dapengaed886d2016-05-02 14:01:36 -0700178 alpnagent
nmittler9466eb52015-09-04 15:13:46 -0700179 tcnative
nmittler74cfe6c2015-05-22 12:25:10 -0700180 }
181
nathanmittler164b7342014-12-15 09:58:05 -0800182 dependencies {
183 testCompile libraries.junit,
184 libraries.mockito
nmittler74cfe6c2015-05-22 12:25:10 -0700185
ZHANG Dapengaed886d2016-05-02 14:01:36 -0700186 // Configuration for modules that use Jetty ALPN agent
187 alpnagent libraries.jetty_alpn_agent
nmittler9466eb52015-09-04 15:13:46 -0700188
189 // Configuration for modules that use Netty tcnative (for OpenSSL).
190 tcnative libraries.netty_tcnative
nathanmittler164b7342014-12-15 09:58:05 -0800191 }
Eric Anderson192144e2015-03-02 13:31:14 -0800192
193 signing {
194 required false
195 sign configurations.archives
196 }
197
nmittler732cfc02015-03-03 07:59:13 -0800198 // Disable JavaDoc doclint on Java 8. It's annoying.
199 if (JavaVersion.current().isJava8Compatible()) {
200 allprojects {
201 tasks.withType(Javadoc) {
202 options.addStringOption('Xdoclint:none', '-quiet')
203 }
204 }
205 }
206
Eric Andersonc3e8dae2015-01-30 14:58:07 -0800207 checkstyle {
208 configFile = file("$rootDir/checkstyle.xml")
Eric Anderson6ab27ab2016-04-18 09:15:25 -0700209 toolVersion = "6.17"
Eric Andersonad44f0a2015-05-05 08:54:51 -0700210 ignoreFailures = false
Eric Anderson26141b42015-03-21 10:59:17 -0700211 if (rootProject.hasProperty("checkstyle.ignoreFailures")) {
212 ignoreFailures = rootProject.properties["checkstyle.ignoreFailures"].toBoolean()
213 }
Eric Andersonefa774b2015-09-15 10:34:14 -0700214 configProperties["rootDir"] = rootDir
Eric Andersonc3e8dae2015-01-30 14:58:07 -0800215 }
216
217 checkstyleMain {
Kun Zhang693a7d22015-05-06 11:35:08 -0700218 source = fileTree(dir: "src/main", include: "**/*.java")
Eric Andersonc3e8dae2015-01-30 14:58:07 -0800219 }
220
221 checkstyleTest {
Kun Zhang693a7d22015-05-06 11:35:08 -0700222 source = fileTree(dir: "src/test", include: "**/*.java")
Eric Andersonc3e8dae2015-01-30 14:58:07 -0800223 }
224
Eric Anderson192144e2015-03-02 13:31:14 -0800225 task javadocJar(type: Jar) {
226 classifier = 'javadoc'
227 from javadoc
228 }
229
230 task sourcesJar(type: Jar) {
231 classifier = 'sources'
232 from sourceSets.main.allSource
233 }
234
235 artifacts {
236 archives javadocJar, sourcesJar
237 }
238
239 uploadArchives.repositories.mavenDeployer {
240 beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
zhangkun83da3c3f82015-03-11 18:03:31 -0700241 String stagingUrl
Kun Zhang2f749712015-05-06 13:10:28 -0700242 if (rootProject.hasProperty('repositoryId')) {
243 stagingUrl = 'https://oss.sonatype.org/service/local/staging/deployByRepositoryId/' +
244 rootProject.repositoryId
zhangkun83da3c3f82015-03-11 18:03:31 -0700245 } else {
246 stagingUrl = 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
247 }
Kun Zhang2f749712015-05-06 13:10:28 -0700248 def configureAuth = {
249 if (rootProject.hasProperty('ossrhUsername') && rootProject.hasProperty('ossrhPassword')) {
250 authentication(userName: rootProject.ossrhUsername, password: rootProject.ossrhPassword)
251 }
Eric Anderson192144e2015-03-02 13:31:14 -0800252 }
Kun Zhang2f749712015-05-06 13:10:28 -0700253 repository(url: stagingUrl, configureAuth)
254 snapshotRepository(url: 'https://oss.sonatype.org/content/repositories/snapshots/', configureAuth)
Eric Anderson192144e2015-03-02 13:31:14 -0800255 }
256
257 [
258 install.repositories.mavenInstaller,
259 uploadArchives.repositories.mavenDeployer,
260 ]*.pom*.whenConfigured { pom ->
261 pom.project {
Eric Anderson7e8a02c2015-03-12 17:03:01 -0700262 name "$project.group:$project.name"
Eric Anderson192144e2015-03-02 13:31:14 -0800263 description project.description
264 url 'https://github.com/grpc/grpc-java'
265
266 scm {
Eric Andersonb7354952016-04-08 08:37:07 -0700267 connection 'scm:git:https://github.com/grpc/grpc-java.git'
268 developerConnection 'scm:git:git@github.com:grpc/grpc-java.git'
Eric Anderson192144e2015-03-02 13:31:14 -0800269 url 'https://github.com/grpc/grpc-java'
270 }
271
272 licenses {
273 license {
274 name 'BSD 3-Clause'
275 url 'http://opensource.org/licenses/BSD-3-Clause'
276 }
277 }
Eric Anderson7e8a02c2015-03-12 17:03:01 -0700278
279 developers {
280 developer {
281 id "grpc.io"
282 name "gRPC Contributors"
283 email "grpc-io@googlegroups.com"
284 url "http://grpc.io/"
285 // https://issues.gradle.org/browse/GRADLE-2719
286 organization = "Google, Inc."
287 organizationUrl "https://www.google.com"
288 }
289 }
Eric Anderson192144e2015-03-02 13:31:14 -0800290 }
Eric Anderson90db93b2016-04-08 13:47:30 -0700291 if (!(project.name in
292 ["grpc-stub", "grpc-protobuf", "grpc-protobuf-lite", "grpc-protobuf-nano"])) {
293 def core = pom.dependencies.find {dep -> dep.artifactId == 'grpc-core'}
294 if (core != null) {
295 // Depend on specific version of grpc-core because internal package is unstable
296 core.version = "[" + core.version + "]"
297 }
298 }
Eric Anderson192144e2015-03-02 13:31:14 -0800299 }
Kun Zhang3ddd1d52015-04-22 10:02:19 -0700300 // At a test failure, log the stack trace to the console so that we don't
301 // have to open the HTML in a browser.
302 test {
303 testLogging {
304 exceptionFormat = 'full'
nmittler4ee2a652015-06-01 16:20:08 -0700305 showExceptions true
306 showCauses true
307 showStackTraces true
Kun Zhang3ddd1d52015-04-22 10:02:19 -0700308 }
Eric Anderson56dca032016-02-12 08:48:41 -0800309 maxHeapSize = '1500m'
Kun Zhang3ddd1d52015-04-22 10:02:19 -0700310 }
nathanmittler164b7342014-12-15 09:58:05 -0800311}