-
-
Notifications
You must be signed in to change notification settings - Fork 118
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
Add an option for disabling the default task dependencies #11
Comments
Same here: Is there a workaround how to get rid of the default task dependencies? /edit:
But I'm not sure how to set those properties, as with this:
I get the error: /edit2: |
This happens because the inputs and outputs of the tasks are not configured correctly. If it was the case, those tasks would run only if needed. First, I advice you to read this part of the Gradle documentation which explains the concept. Then, I advice you not to use the virtual Create a Once this will be done, the tasks will run only when needed. They will run if something changed since last build but they will not run if everything is already up-to-date. I don't think removing the dependencies is the appropriate solution. That would mean for instance that starting from a fresh source code checkout, running Hope this will help you 😉 |
No description provided.
The text was updated successfully, but these errors were encountered: