gradle / gradle-completion

Gradle tab completion for bash and zsh
MIT License
1.02k stars 133 forks source link

Completion should generate separate tasks for the root project. #104

Open pmarschik opened 3 years ago

pmarschik commented 3 years ago

Currently the completion for root project tasks are generated like compileJava etc. Invoking gradle compileJava invokes the compileJava on the root project AND all subprojects that have that task.

I propose to additionally generate completions for :compileJava etc. (i.e. prefixed with :) so the root project's task can be invoked specifically without triggering tasks on subprojects.