Skip to content

Commit

Permalink
Fixed Java 7 build issues and updated to version 1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
LachlanMcKee committed Nov 9, 2016
1 parent 41c1aef commit f333d08
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Log
==========

Version 1.6.3 *(2016-11-09)*
----------------------------

* Fix: Added Java 7 target and source compatibility for all libraries.

Version 1.6.2 *(2016-10-22)*
----------------------------

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,6 @@ public final class PersonModel_GsonTypeAdapter extends TypeAdapter<PersonModel>
This library is available on Maven, you can add it to your project using the following gradle dependencies:

```gradle
compile 'net.lachlanmckee:gsonpath:1.6.2'
apt 'net.lachlanmckee:gsonpath-compiler:1.6.2'
compile 'net.lachlanmckee:gsonpath:1.6.3'
apt 'net.lachlanmckee:gsonpath-compiler:1.6.3'
```
2 changes: 1 addition & 1 deletion gsonpath-compiler/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'maven'
apply plugin: 'signing'

group = 'net.lachlanmckee'
version = '1.6.2'
version = '1.6.3'

targetCompatibility = JavaVersion.VERSION_1_7
sourceCompatibility = JavaVersion.VERSION_1_7
Expand Down
5 changes: 4 additions & 1 deletion gsonpath/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ apply plugin: 'maven'
apply plugin: 'signing'

group = 'net.lachlanmckee'
version = '1.6.2'
version = '1.6.3'

targetCompatibility = JavaVersion.VERSION_1_7
sourceCompatibility = JavaVersion.VERSION_1_7

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
Expand Down

0 comments on commit f333d08

Please sign in to comment.