Skip to content
This repository has been archived by the owner on Jun 16, 2019. It is now read-only.

Commit

Permalink
Target JDK 7 instead of 8
Browse files Browse the repository at this point in the history
  • Loading branch information
afollestad committed Feb 22, 2017
1 parent 8459368 commit 191000e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .idea/modules/ason.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The dependency is available via jCenter.
```Gradle
dependencies {
...
compile 'com.afollestad:ason:1.3.0'
compile 'com.afollestad:ason:1.3.1'
}
```

Expand All @@ -63,7 +63,7 @@ Since Android includes `org.json` classes, you'll want to exclude the copies pro
```Gradle
dependencies {
...
compile('com.afollestad:ason:1.3.0') {
compile('com.afollestad:ason:1.3.1') {
exclude group: 'org.json', module: 'json'
}
}
Expand All @@ -75,7 +75,7 @@ dependencies {
<dependency>
<groupId>com.afollestad</groupId>
<artifactId>ason</artifactId>
<version>1.2.0</version>
<version>1.3.1</version>
<type>pom</type>
</dependency>
```
Expand Down
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
group 'com.afollestad'
version '1.3.0'
version '1.3.1'

apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'jacoco'
apply plugin: 'com.novoda.bintray-release'

sourceCompatibility = 1.7
targetCompatibility = '1.7'
sourceCompatibility = '1.7'

buildscript {
repositories {
Expand All @@ -31,7 +32,7 @@ publish {
userOrg = 'drummer-aidan'
groupId = 'com.afollestad'
artifactId = 'ason'
publishVersion = '1.3.0'
publishVersion = '1.3.1'
website = 'https://github.com/afollestad/ason'
}

Expand Down

0 comments on commit 191000e

Please sign in to comment.