Skip to content
This repository has been archived by the owner on Apr 24, 2020. It is now read-only.

Commit

Permalink
FIXED #10
Browse files Browse the repository at this point in the history
  • Loading branch information
ysb33r committed Feb 15, 2016
1 parent 1f8143e commit 3abb377
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

* https://github.com/ysb33r/ivypot-gradle-plugin/issues/2[Issue #2] - Add support for `repositories.flatDir`.

== 0.3.6

* https://github.com/ysb33r/ivypot-gradle-plugin/issues/10[Issue #10] - Fixes issues that was suppose to be fixed by https://github.com/ysb33r/ivypot-gradle-plugin/issues/8[Issue #9].
* Compatibility check up to Gradle 2.11

== 0.3.5

* https://github.com/ysb33r/ivypot-gradle-plugin/issues/8[Issue #9] - Cannot use pattern-based Ivy Resolver since Gradle 2.3.
Expand Down
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ apply plugin : 'org.ysb33r.gradletest'

apply from: 'gradle/integration-tests.gradle'

version = '0.3.6-SNAPSHOT'
version = '0.3.6'
group = 'org.ysb33r.gradle'
sourceCompatibility = 1.6
targetCompatibility = 1.6
Expand Down Expand Up @@ -124,6 +124,9 @@ gradleTest {
versions '2.4'
versions '2.7'
versions '2.8'
versions '2.9'
versions '2.10'
versions '2.11'

inputs.files jar
inputs.dir file('gradleTest')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ class OfflineRepositorySync extends DefaultTask {

// This handles a difference in the internal API between 2.3 & 2.4
if (DirectInstantiator.metaClass.static.hasProperty('INSTANCE')) {
instantiator - DirectInstantiator.INSTANCE
instantiator = DirectInstantiator.INSTANCE
} else {
instantiator = new DirectInstantiator()
}
Expand Down

0 comments on commit 3abb377

Please sign in to comment.