blob: 5bb44eaeb650d623fd152765896963a5dac36395 [file] [log] [blame]
nathanmittler164b7342014-12-15 09:58:05 -08001subprojects {
2 apply plugin: "java"
3 apply plugin: "maven"
nmittler52f42202015-01-21 14:30:14 -08004 apply plugin: "idea"
nathanmittler164b7342014-12-15 09:58:05 -08005
6 group = "com.google.net.stubby"
7 version = "0.1.0-SNAPSHOT"
8
9 sourceCompatibility = 1.6
10 targetCompatibility = 1.6
11
12 repositories {
13 mavenCentral()
14 mavenLocal()
15 }
16
nmittler02c953e2015-01-26 14:03:11 -080017 compileJava {
18 options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
19 }
20
nathanmittler164b7342014-12-15 09:58:05 -080021 // External dependency management
22 ext.libraries = [
23 protobuf: 'com.google.protobuf:protobuf-java:2.6.1',
24 guava: 'com.google.guava:guava:18.0',
25 jsr305: 'com.google.code.findbugs:jsr305:3.0.0',
26 oauth_client: 'com.google.oauth-client:google-oauth-client:1.18.0-rc',
27 javaee_api: 'javax:javaee-api:7.0',
28 okio: 'com.squareup.okio:okio:1.0.1',
29 hpack: 'com.twitter:hpack:0.9.1',
30 protobuf_plugin: 'ws.antonov.gradle.plugins:gradle-plugin-protobuf:0.9.1',
31
32 // TODO: Unreleased dependencies.
33 // These must already be installed in the local maven repository.
34 netty: 'io.netty:netty-codec-http2:5.0.0.Alpha2-SNAPSHOT',
Manik Surtani0ca65842015-01-16 15:13:58 -080035 okhttp: 'com.squareup.okhttp:okhttp:2.2.0',
nathanmittler164b7342014-12-15 09:58:05 -080036
37 // Test dependencies.
38 junit: 'junit:junit:4.11',
39 mockito: 'org.mockito:mockito-core:1.10.8'
40 ]
41
42 dependencies {
43 testCompile libraries.junit,
44 libraries.mockito
45 }
46}