Skip to content

Commit de52ee9

Browse files
(feat): upgrade to source compatibility to java 8. finally dropping 7 (#264)
* upgrade to source compatibility to java 8. finally dropping 7 * update readme to mention java 8
1 parent 7ac2b72 commit de52ee9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This repository houses the Java SDK for Optimizely's Full Stack product.
1111

1212
#### Gradle
1313

14-
The SDK is available through Bintray and is created with source and target compatibility of 1.7. The core-api and httpclient Bintray packages are [optimizely-sdk-core-api](https://bintray.com/optimizely/optimizely/optimizely-sdk-core-api)
14+
The SDK is available through Bintray and is created with source and target compatibility of 1.8. The core-api and httpclient Bintray packages are [optimizely-sdk-core-api](https://bintray.com/optimizely/optimizely/optimizely-sdk-core-api)
1515
and [optimizely-sdk-httpclient](https://bintray.com/optimizely/optimizely/optimizely-sdk-httpclient) respectively. To install, place the
1616
following in your `build.gradle` and substitute `VERSION` for the latest SDK version available via Bintray:
1717

@@ -130,4 +130,4 @@ License (Apache 2.0): [https://github.com/google/gson/blob/master/LICENSE](https
130130

131131
**Apache HttpClient** [https://hc.apache.org/httpcomponents-client-ga/index.html ](https://hc.apache.org/httpcomponents-client-ga/index.html)
132132
Copyright © January 2004
133-
License (Apache 2.0): [https://github.com/apache/httpcomponents-client/blob/master/LICENSE.txt](https://github.com/apache/httpcomponents-client/blob/master/LICENSE.txt)
133+
License (Apache 2.0): [https://github.com/apache/httpcomponents-client/blob/master/LICENSE.txt](https://github.com/apache/httpcomponents-client/blob/master/LICENSE.txt)

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ subprojects {
5050
apply plugin: 'me.champeau.gradle.jmh'
5151
apply plugin: 'nebula.optional-base'
5252

53-
sourceCompatibility = 1.7
54-
targetCompatibility = 1.7
53+
sourceCompatibility = 1.8
54+
targetCompatibility = 1.8
5555

5656
repositories {
5757
jcenter()

0 commit comments

Comments
 (0)