aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2018-08-27 13:31:59 -0700
committerEric Anderson <ejona@google.com>2018-08-27 15:29:03 -0700
commit7b126b00a0f02a3d244ad6065b0fdb7ffebe4115 (patch)
treed469d0ae7d22f274314a30c8e9678502e6a40963 /build.gradle
parent8d6ba2335acbb9a6e7456e5b449d029a0b6d052d (diff)
downloadgrpc-grpc-java-7b126b00a0f02a3d244ad6065b0fdb7ffebe4115.tar.gz
all: Swap to Java 7 source and bytecode
Core and OkHttp are left with Java 6 for the moment. Once we resolve their issues they could be bumped as well. Updates #3961
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index 21d00169d..e4d6140d9 100644
--- a/build.gradle
+++ b/build.gradle
@@ -55,8 +55,8 @@ subprojects {
group = "io.grpc"
version = "1.15.0-SNAPSHOT" // CURRENT_GRPC_VERSION
- sourceCompatibility = 1.6
- targetCompatibility = 1.6
+ sourceCompatibility = 1.7
+ targetCompatibility = 1.7
repositories {
maven { // The google mirror is less flaky than mavenCentral()