blob: 546d3c2b60c2389f2582b1cf2e3b5ffefd5e1ecd [file] [log] [blame]
Kun Zhang4bc2d6d2015-04-17 10:49:11 -07001buildscript {
2 repositories {
3 mavenCentral()
4 mavenLocal()
5 }
6 dependencies {
7 classpath 'com.google.gradle:osdetector-gradle-plugin:1.2.1'
8 }
9}
Eric Andersonb938ba52015-02-28 09:59:25 -080010
nathanmittler164b7342014-12-15 09:58:05 -080011subprojects {
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"
Kun Zhang4bc2d6d2015-04-17 10:49:11 -070016 apply plugin: "osdetector"
Eric Anderson192144e2015-03-02 13:31:14 -080017 apply plugin: "signing"
nathanmittler164b7342014-12-15 09:58:05 -080018
nmittlerf8314582015-01-27 10:25:39 -080019 group = "io.grpc"
nathanmittler164b7342014-12-15 09:58:05 -080020 version = "0.1.0-SNAPSHOT"
21
22 sourceCompatibility = 1.6
23 targetCompatibility = 1.6
24
25 repositories {
26 mavenCentral()
27 mavenLocal()
28 }
29
Eric Anderson76d09552015-03-12 15:25:11 -070030 [compileJava, compileTestJava].each() {
31 it.options.compilerArgs += ["-Xlint:unchecked", "-Xlint:deprecation", "-Xlint:-options"]
32 it.options.encoding = "UTF-8"
nmittler02c953e2015-01-26 14:03:11 -080033 }
34
Eric Anderson10fb2062015-05-05 10:28:38 -070035 javadoc.options {
36 encoding = 'UTF-8'
37 links 'https://docs.oracle.com/javase/8/docs/api/'
38 }
Eric Anderson14444a92015-03-11 16:44:38 -070039
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -080040 ext {
41 libraries = [
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -080042 guava: 'com.google.guava:guava:18.0',
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -080043 // used to collect benchmark results
44 hdrhistogram: 'org.hdrhistogram:HdrHistogram:2.1.4',
Jeff Pinnerb1cc7cc2015-02-25 10:17:23 -080045 hpack: 'com.twitter:hpack:0.10.1',
nmittlerb897a892015-02-23 12:03:59 -080046 javaee_api: 'javax:javaee-api:7.0',
47 jsonp: 'org.glassfish:javax.json:1.0.4',
48 jsr305: 'com.google.code.findbugs:jsr305:3.0.0',
Louis Ryan767a12c2015-03-02 15:05:09 -080049 oauth_client: 'com.google.auth:google-auth-library-oauth2-http:0.1.0',
nmittlerb897a892015-02-23 12:03:59 -080050 okhttp: 'com.squareup.okhttp:okhttp:2.2.0',
Eric Andersona6f5fff2015-02-26 07:53:17 -080051 protobuf: 'com.google.protobuf:protobuf-java:3.0.0-alpha-2',
52 protobuf_nano: 'com.google.protobuf.nano:protobuf-javanano:3.0.0-alpha-2',
Kun Zhang41940f72015-04-28 18:14:34 -070053 protobuf_plugin: 'com.google.protobuf:protobuf-gradle-plugin:0.3.1',
nathanmittler164b7342014-12-15 09:58:05 -080054
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -080055 // TODO: Unreleased dependencies.
56 // These must already be installed in the local maven repository.
nmittler2a425092015-03-11 12:15:30 -070057 netty: 'io.netty:netty-codec-http2:4.1.0.Beta5-SNAPSHOT',
nathanmittler164b7342014-12-15 09:58:05 -080058
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -080059 // Test dependencies.
60 junit: 'junit:junit:4.11',
Eric Anderson192144e2015-03-02 13:31:14 -080061 mockito: 'org.mockito:mockito-core:1.10.19'
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -080062 ]
63
64 // Determine the correct version of Jetty ALPN boot to use based
65 // on the Java version.
66 def alpnboot_version = '8.1.2.v20141202'
67 if (JavaVersion.current().ordinal() < JavaVersion.VERSION_1_8.ordinal()) {
68 alpnboot_version = '7.1.2.v20141202'
69 }
70
71 alpnboot_package_name = 'org.mortbay.jetty.alpn:alpn-boot:' + alpnboot_version
Eric Andersonb938ba52015-02-28 09:59:25 -080072
Kun Zhang4bc2d6d2015-04-17 10:49:11 -070073 def exeSuffix = osdetector.os == 'windows' ? ".exe" : ""
Kun Zhang90706dc2015-04-09 13:11:31 -070074 protocPluginBaseName = 'protoc-gen-grpc-java'
Kun Zhang221c5342015-04-29 18:16:15 -070075 javaPluginPath = "$rootDir/compiler/build/binaries/java_pluginExecutable/$protocPluginBaseName$exeSuffix"
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -080076 }
nathanmittler164b7342014-12-15 09:58:05 -080077
78 dependencies {
79 testCompile libraries.junit,
80 libraries.mockito
81 }
Eric Anderson192144e2015-03-02 13:31:14 -080082
83 signing {
84 required false
85 sign configurations.archives
86 }
87
nmittler732cfc02015-03-03 07:59:13 -080088 // Disable JavaDoc doclint on Java 8. It's annoying.
89 if (JavaVersion.current().isJava8Compatible()) {
90 allprojects {
91 tasks.withType(Javadoc) {
92 options.addStringOption('Xdoclint:none', '-quiet')
93 }
94 }
95 }
96
Eric Andersonc3e8dae2015-01-30 14:58:07 -080097 checkstyle {
98 configFile = file("$rootDir/checkstyle.xml")
Xudong Ma9aae6f62015-04-06 21:04:56 +080099 toolVersion = "6.5"
Eric Andersonad44f0a2015-05-05 08:54:51 -0700100 ignoreFailures = false
Eric Anderson26141b42015-03-21 10:59:17 -0700101 if (rootProject.hasProperty("checkstyle.ignoreFailures")) {
102 ignoreFailures = rootProject.properties["checkstyle.ignoreFailures"].toBoolean()
103 }
Eric Andersonc3e8dae2015-01-30 14:58:07 -0800104 }
105
106 checkstyleMain {
107 source = fileTree(dir: "src", include: "**/*.java",
108 excludes: ["${buildDir}/generated-sources", "**/TestServiceGrpc.java"])
109 }
110
111 checkstyleTest {
112 source = fileTree(dir: "test", include: "**/*.java",
113 exclude: "${buildDir}/generated-sources")
114 }
115
Eric Anderson192144e2015-03-02 13:31:14 -0800116 task javadocJar(type: Jar) {
117 classifier = 'javadoc'
118 from javadoc
119 }
120
121 task sourcesJar(type: Jar) {
122 classifier = 'sources'
123 from sourceSets.main.allSource
124 }
125
126 artifacts {
127 archives javadocJar, sourcesJar
128 }
129
130 uploadArchives.repositories.mavenDeployer {
131 beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
zhangkun83da3c3f82015-03-11 18:03:31 -0700132 String stagingUrl
133 if (System.getProperty('repositoryId')) {
134 stagingUrl = 'https://oss.sonatype.org/service/local/staging/deployByRepositoryId/' + System.getProperty('repositoryId')
135 } else {
136 stagingUrl = 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
137 }
138 repository(url: stagingUrl) {
Eric Anderson192144e2015-03-02 13:31:14 -0800139 if (rootProject.hasProperty("ossrhUsername")
140 && rootProject.hasProperty("ossrhPassword")) {
141 authentication(userName: ossrhUsername, password: ossrhPassword)
142 }
143 }
144
145 snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
146 if (rootProject.hasProperty("ossrhUsername")
147 && rootProject.hasProperty("ossrhPassword")) {
148 authentication(userName: ossrhUsername, password: ossrhPassword)
149 }
150 }
151 }
152
153 [
154 install.repositories.mavenInstaller,
155 uploadArchives.repositories.mavenDeployer,
156 ]*.pom*.whenConfigured { pom ->
157 pom.project {
Eric Anderson7e8a02c2015-03-12 17:03:01 -0700158 name "$project.group:$project.name"
Eric Anderson192144e2015-03-02 13:31:14 -0800159 description project.description
160 url 'https://github.com/grpc/grpc-java'
161
162 scm {
163 connection 'scm:svn:https://github.com/grpc/grpc-java.git'
164 developerConnection 'scm:svn:git@github.com:grpc/grpc-java.git'
165 url 'https://github.com/grpc/grpc-java'
166 }
167
168 licenses {
169 license {
170 name 'BSD 3-Clause'
171 url 'http://opensource.org/licenses/BSD-3-Clause'
172 }
173 }
Eric Anderson7e8a02c2015-03-12 17:03:01 -0700174
175 developers {
176 developer {
177 id "grpc.io"
178 name "gRPC Contributors"
179 email "grpc-io@googlegroups.com"
180 url "http://grpc.io/"
181 // https://issues.gradle.org/browse/GRADLE-2719
182 organization = "Google, Inc."
183 organizationUrl "https://www.google.com"
184 }
185 }
Eric Anderson192144e2015-03-02 13:31:14 -0800186 }
187 }
Kun Zhang3ddd1d52015-04-22 10:02:19 -0700188 // At a test failure, log the stack trace to the console so that we don't
189 // have to open the HTML in a browser.
190 test {
191 testLogging {
192 exceptionFormat = 'full'
193 }
194 }
nathanmittler164b7342014-12-15 09:58:05 -0800195}