-
Notifications
You must be signed in to change notification settings - Fork 396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gradle 2.0 Compatibility #66
Comments
Is this the error that you get?
That class still exists in Gradle 2.0: https://github.com/gradle/gradle/blob/REL_2.0/subprojects/core/src/main/groovy/org/gradle/api/internal/file/copy/CopySpecInternal.java |
I do get this error. |
Hmm, ok. Looks like the internal api masking got stricter and is restricting access to that method now. |
I think I can replace this with just |
Happy to Help! |
How soon it will be ready? 1.1.0 seems to be far enough. |
Hopefully only a couple days. Please remember that this is a side project for me. |
thanks for fixing this! it would be great to see the new release in jcenter soon! |
Shadow plugin version 1.0.1 is using an internal Gradle api class:
org.gradle.api.internal.file.copy.CopySpecInternal
in the classcom.github.jengelman.gradle.plugins.shadow.internal.DependencyFilter
.This internal Gradle class is removed from Gradle 2.0 which was release at July 1st 2014, making shadow unusable with Gradle 2.0.
The text was updated successfully, but these errors were encountered: