I have a problem with the Gradle daemon not showing println output from my plugin on subsequent runs.
I can workaround this problem by adding --no-daemon
when I run from the command line.
When I run the Gradle task from IDEA though, when I add --no-daemon
to the "script parameters" (not the "VM options"), the execution fails with:
10:59:32: Executing external task 'lambdaGet --no-daemon'...
Unknown command-line option '--no-daemon'.
How can I use the --no-daemon
option with Gradle task configuration in IDEA?
EDIT:
Note that this question is specifically about how to do this in IDEA. I don't want to disable the daemon globally, just from one specific IDEA run configuration.