From 88619ec7650828ff0932c81c91254b354d216e62 Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Wed, 6 Feb 2019 17:01:30 -0500 Subject: [PATCH] Drop support for the low-level REST client on JDK 7 This commit bumps the minimum compiler version on the low-level REST client to JDK 8. --- client/rest/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/rest/build.gradle b/client/rest/build.gradle index 6b22b7b909909..7bbcb1df85694 100644 --- a/client/rest/build.gradle +++ b/client/rest/build.gradle @@ -22,8 +22,8 @@ apply plugin: 'elasticsearch.build' apply plugin: 'nebula.maven-base-publish' apply plugin: 'nebula.maven-scm' -targetCompatibility = JavaVersion.VERSION_1_7 -sourceCompatibility = JavaVersion.VERSION_1_7 +targetCompatibility = JavaVersion.VERSION_1_8 +sourceCompatibility = JavaVersion.VERSION_1_8 group = 'org.elasticsearch.client' archivesBaseName = 'elasticsearch-rest-client'