mirror of https://github.com/grpc/grpc-java.git
48 lines
1.4 KiB
Groovy
48 lines
1.4 KiB
Groovy
subprojects {
|
|
apply plugin: "java"
|
|
apply plugin: "maven"
|
|
apply plugin: "idea"
|
|
|
|
group = "io.grpc"
|
|
version = "0.1.0-SNAPSHOT"
|
|
|
|
sourceCompatibility = 1.6
|
|
targetCompatibility = 1.6
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
mavenLocal()
|
|
}
|
|
|
|
compileJava {
|
|
options.compilerArgs << "-Xlint:unchecked"
|
|
}
|
|
|
|
// External dependency management
|
|
ext.libraries = [
|
|
protobuf: 'com.google.protobuf:protobuf-java:3.0.0-pre',
|
|
guava: 'com.google.guava:guava:18.0',
|
|
jsr305: 'com.google.code.findbugs:jsr305:3.0.0',
|
|
oauth_client: 'com.google.oauth-client:google-oauth-client:1.18.0-rc',
|
|
javaee_api: 'javax:javaee-api:7.0',
|
|
hpack: 'com.twitter:hpack:0.9.1',
|
|
protobuf_plugin: 'ws.antonov.gradle.plugins:gradle-plugin-protobuf:0.9.1',
|
|
okhttp: 'com.squareup.okhttp:okhttp:2.2.0',
|
|
// used to collect benchmark results
|
|
hdrhistogram: 'org.hdrhistogram:HdrHistogram:2.1.4',
|
|
|
|
// TODO: Unreleased dependencies.
|
|
// These must already be installed in the local maven repository.
|
|
netty: 'io.netty:netty-codec-http2:5.0.0.Alpha2-SNAPSHOT',
|
|
|
|
// Test dependencies.
|
|
junit: 'junit:junit:4.11',
|
|
mockito: 'org.mockito:mockito-core:1.10.8'
|
|
]
|
|
|
|
dependencies {
|
|
testCompile libraries.junit,
|
|
libraries.mockito
|
|
}
|
|
}
|