-
Notifications
You must be signed in to change notification settings - Fork 7
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
GosuCompile shouldn't rely on SourceTask.source field #47
Comments
At first glance, I thought it was just sloppy programming. But there is a reason I originally accessed the field directly - I need the raw values, some of which are instances of SourceDirectorySet. It's ugly but reflection might be the only solution 👎👎 |
Why do you need the |
Yes that can work. There are some complicating factors though; I'll be in touch via Slack. |
In
getSourceRoots()
there is this code that refers to thesource
field fromSourceTask
:The
source
field was exposed before asprotected
, but we are removing that in Gradle 5.0. Please usegetSource()
instead.The text was updated successfully, but these errors were encountered: