blob: 6442429e581bd95a9ba27e14b25588d50a8c2f3a [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 Anderson14444a92015-03-11 16:44:38 -070035 javadoc.options.encoding = "UTF-8"
36
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -080037 ext {
38 libraries = [
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -080039 guava: 'com.google.guava:guava:18.0',
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -080040 // used to collect benchmark results
41 hdrhistogram: 'org.hdrhistogram:HdrHistogram:2.1.4',
Jeff Pinnerb1cc7cc2015-02-25 10:17:23 -080042 hpack: 'com.twitter:hpack:0.10.1',
nmittlerb897a892015-02-23 12:03:59 -080043 javaee_api: 'javax:javaee-api:7.0',
44 jsonp: 'org.glassfish:javax.json:1.0.4',
45 jsr305: 'com.google.code.findbugs:jsr305:3.0.0',
Louis Ryan767a12c2015-03-02 15:05:09 -080046 oauth_client: 'com.google.auth:google-auth-library-oauth2-http:0.1.0',
nmittlerb897a892015-02-23 12:03:59 -080047 okhttp: 'com.squareup.okhttp:okhttp:2.2.0',
Eric Andersona6f5fff2015-02-26 07:53:17 -080048 protobuf: 'com.google.protobuf:protobuf-java:3.0.0-alpha-2',
49 protobuf_nano: 'com.google.protobuf.nano:protobuf-javanano:3.0.0-alpha-2',
Kun Zhang41940f72015-04-28 18:14:34 -070050 protobuf_plugin: 'com.google.protobuf:protobuf-gradle-plugin:0.3.1',
nathanmittler164b7342014-12-15 09:58:05 -080051
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -080052 // TODO: Unreleased dependencies.
53 // These must already be installed in the local maven repository.
nmittler2a425092015-03-11 12:15:30 -070054 netty: 'io.netty:netty-codec-http2:4.1.0.Beta5-SNAPSHOT',
nathanmittler164b7342014-12-15 09:58:05 -080055
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -080056 // Test dependencies.
57 junit: 'junit:junit:4.11',
Eric Anderson192144e2015-03-02 13:31:14 -080058 mockito: 'org.mockito:mockito-core:1.10.19'
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -080059 ]
60
61 // Determine the correct version of Jetty ALPN boot to use based
62 // on the Java version.
63 def alpnboot_version = '8.1.2.v20141202'
64 if (JavaVersion.current().ordinal() < JavaVersion.VERSION_1_8.ordinal()) {
65 alpnboot_version = '7.1.2.v20141202'
66 }
67
68 alpnboot_package_name = 'org.mortbay.jetty.alpn:alpn-boot:' + alpnboot_version
Eric Andersonb938ba52015-02-28 09:59:25 -080069
Kun Zhang4bc2d6d2015-04-17 10:49:11 -070070 def exeSuffix = osdetector.os == 'windows' ? ".exe" : ""
Kun Zhang90706dc2015-04-09 13:11:31 -070071 protocPluginBaseName = 'protoc-gen-grpc-java'
Kun Zhang221c5342015-04-29 18:16:15 -070072 javaPluginPath = "$rootDir/compiler/build/binaries/java_pluginExecutable/$protocPluginBaseName$exeSuffix"
Jakob Buchgraber7ddcdfd2015-02-13 16:21:53 -080073 }
nathanmittler164b7342014-12-15 09:58:05 -080074
75 dependencies {
76 testCompile libraries.junit,
77 libraries.mockito
78 }
Eric Anderson192144e2015-03-02 13:31:14 -080079
80 signing {
81 required false
82 sign configurations.archives
83 }
84
nmittler732cfc02015-03-03 07:59:13 -080085 // Disable JavaDoc doclint on Java 8. It's annoying.
86 if (JavaVersion.current().isJava8Compatible()) {
87 allprojects {
88 tasks.withType(Javadoc) {
89 options.addStringOption('Xdoclint:none', '-quiet')
90 }
91 }
92 }
93
Eric Andersonc3e8dae2015-01-30 14:58:07 -080094 checkstyle {
95 configFile = file("$rootDir/checkstyle.xml")
Xudong Ma9aae6f62015-04-06 21:04:56 +080096 toolVersion = "6.5"
Eric Andersonad44f0a2015-05-05 08:54:51 -070097 ignoreFailures = false
Eric Anderson26141b42015-03-21 10:59:17 -070098 if (rootProject.hasProperty("checkstyle.ignoreFailures")) {
99 ignoreFailures = rootProject.properties["checkstyle.ignoreFailures"].toBoolean()
100 }
Eric Andersonc3e8dae2015-01-30 14:58:07 -0800101 }
102
103 checkstyleMain {
104 source = fileTree(dir: "src", include: "**/*.java",
105 excludes: ["${buildDir}/generated-sources", "**/TestServiceGrpc.java"])
106 }
107
108 checkstyleTest {
109 source = fileTree(dir: "test", include: "**/*.java",
110 exclude: "${buildDir}/generated-sources")
111 }
112
Eric Anderson192144e2015-03-02 13:31:14 -0800113 task javadocJar(type: Jar) {
114 classifier = 'javadoc'
115 from javadoc
116 }
117
118 task sourcesJar(type: Jar) {
119 classifier = 'sources'
120 from sourceSets.main.allSource
121 }
122
123 artifacts {
124 archives javadocJar, sourcesJar
125 }
126
127 uploadArchives.repositories.mavenDeployer {
128 beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
zhangkun83da3c3f82015-03-11 18:03:31 -0700129 String stagingUrl
130 if (System.getProperty('repositoryId')) {
131 stagingUrl = 'https://oss.sonatype.org/service/local/staging/deployByRepositoryId/' + System.getProperty('repositoryId')
132 } else {
133 stagingUrl = 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
134 }
135 repository(url: stagingUrl) {
Eric Anderson192144e2015-03-02 13:31:14 -0800136 if (rootProject.hasProperty("ossrhUsername")
137 && rootProject.hasProperty("ossrhPassword")) {
138 authentication(userName: ossrhUsername, password: ossrhPassword)
139 }
140 }
141
142 snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
143 if (rootProject.hasProperty("ossrhUsername")
144 && rootProject.hasProperty("ossrhPassword")) {
145 authentication(userName: ossrhUsername, password: ossrhPassword)
146 }
147 }
148 }
149
150 [
151 install.repositories.mavenInstaller,
152 uploadArchives.repositories.mavenDeployer,
153 ]*.pom*.whenConfigured { pom ->
154 pom.project {
Eric Anderson7e8a02c2015-03-12 17:03:01 -0700155 name "$project.group:$project.name"
Eric Anderson192144e2015-03-02 13:31:14 -0800156 description project.description
157 url 'https://github.com/grpc/grpc-java'
158
159 scm {
160 connection 'scm:svn:https://github.com/grpc/grpc-java.git'
161 developerConnection 'scm:svn:git@github.com:grpc/grpc-java.git'
162 url 'https://github.com/grpc/grpc-java'
163 }
164
165 licenses {
166 license {
167 name 'BSD 3-Clause'
168 url 'http://opensource.org/licenses/BSD-3-Clause'
169 }
170 }
Eric Anderson7e8a02c2015-03-12 17:03:01 -0700171
172 developers {
173 developer {
174 id "grpc.io"
175 name "gRPC Contributors"
176 email "grpc-io@googlegroups.com"
177 url "http://grpc.io/"
178 // https://issues.gradle.org/browse/GRADLE-2719
179 organization = "Google, Inc."
180 organizationUrl "https://www.google.com"
181 }
182 }
Eric Anderson192144e2015-03-02 13:31:14 -0800183 }
184 }
Kun Zhang3ddd1d52015-04-22 10:02:19 -0700185 // At a test failure, log the stack trace to the console so that we don't
186 // have to open the HTML in a browser.
187 test {
188 testLogging {
189 exceptionFormat = 'full'
190 }
191 }
nathanmittler164b7342014-12-15 09:58:05 -0800192}