-
-
Notifications
You must be signed in to change notification settings - Fork 283
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
Configure Javadoc Tasks with Android Refernce #9
Comments
Something like this: classpath += project.files(plugin.getRuntimeJarList().join(File.pathSeparator)) where |
The absence of this is causing errors on Java 8 that are only warnings on Java 7. |
Is there currently a solution? The warnings are very annoying. I tried to get access to all compile dependencies, but I failed. |
Ah, now I see that this may be what I tried to solve in #13. |
I've just pushed b46dfc3 to dev which may fix this. Can't test until I get home though. |
There are so many javadoc errors, I add this line to avoid build failure:
|
Was this ever resolved? I can't seem to add the androidJavadocs task because I get |
@rharter modify gradle-mvn-push.gradle: task androidJavadocs(type: Javadoc) { |
a lot of documentation around this with no clear solution: e.g.: chrisbanes/gradle-mvn-push#9 chrisbanes/gradle-mvn-push#13
Configure the javadoc tasks'
classpath
with Android'sbootclasspath
. Otherwise references to Android classes cause warnings or failures when building.The text was updated successfully, but these errors were encountered: