Skip to content
This repository has been archived by the owner on Feb 11, 2022. It is now read-only.

Commit

Permalink
Merge pull request #98 from novoda/fixup/enforce_java_source_compatib…
Browse files Browse the repository at this point in the history
…ility

Bug: Enforce java 1.6 source compatibility
  • Loading branch information
Xavi Rigau authored Jul 8, 2016
2 parents 1689b8c + 1458c67 commit 7f79f82
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 1.6.2
- Fix source/target compatibility to Java 1.6

# 1.6.1
- Task to enable/disable system animations. [#96 by Said Tahsin Dane](https://github.com/novoda/gradle-android-command-plugin/pull/96)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.novoda:gradle-android-command-plugin:1.6.1'
classpath 'com.novoda:gradle-android-command-plugin:1.6.2'
}
}
Expand Down
13 changes: 5 additions & 8 deletions gradle-android-command-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,20 @@ buildscript {
apply plugin: 'groovy'
apply plugin: 'com.novoda.bintray-release'

sourceCompatibility = JavaVersion.VERSION_1_6
targetCompatibility = JavaVersion.VERSION_1_6

dependencies {
compile gradleApi()
}

group = 'com.novoda'
version = '1.6.1'

ext {
sourceCompatibility = 1.6
targetCompatibility = 1.6
artifactId = 'gradle-android-command-plugin'
}
version = '1.6.2'

publish {
userOrg = 'novoda'
groupId = 'com.novoda'
artifactId = project.ext.artifactId
artifactId = 'gradle-android-command-plugin'
version = project.version
description = 'Useful tasks for gradle android builds'
website = 'https://github.com/novoda/gradle-android-command-plugin'
Expand Down

0 comments on commit 7f79f82

Please sign in to comment.