No module for run configuration in gradle-based plugin
Answered
I have cloned gradle-based plugin repository and moved my plugin files into it (https://github.com/raydenvoldeskine/clear-dependencies-plugin-kt)
But when I try to create "Plugin" Run configuration for testing by launching Idea the "classpath of module" field is empty. I'd expect cloned project should not have this issue.
Please sign in to leave a comment.
Because you're not supposed to create any run configuration - all tasks are already provided by Gradle.
Have you checked the Gradle ToolWindow on the right side?
Thanks, by runIDE I can really run IDE and see my plugin in it. What shall I use for debugging?
The same task, but use Debug instead of Run.
THank you, that did work