io.quarkus.cli.common.HelpOption 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.common;
import picocli.CommandLine;
public class HelpOption {
@CommandLine.Option(names = { "-h", "--help" }, usageHelp = true, description = "Display this help message.")
public boolean help;
}