io.quarkus.cli.Completion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-cli Show documentation
Show all versions of quarkus-cli Show documentation
Quarkus command line utility
package io.quarkus.cli;
import picocli.AutoComplete.GenerateCompletion;
import picocli.CommandLine;
@CommandLine.Command(name = "completion", version = "generate-completion "
+ CommandLine.VERSION, header = "bash/zsh completion: source <(${PARENT-COMMAND-FULL-NAME:-$PARENTCOMMAND} ${COMMAND-NAME})", helpCommand = true)
public class Completion extends GenerateCompletion {
}