Skip to content

Commit

Permalink
Drop support for the low-level REST client on JDK 7
Browse files Browse the repository at this point in the history
This commit bumps the minimum compiler version on the low-level REST
client to JDK 8.
  • Loading branch information
jasontedor committed Feb 6, 2019
1 parent 3bf8e24 commit 88619ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/rest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 88619ec

Please sign in to comment.