As of version 0.8.1 JewelCli supports hidden options. These are options that will not show up in your help message.
interface HiddenOptionNotIncludedInHelp { @Option(hidden = true) boolean getDebug(); } |
Will create an option called “–debug” which you can specify on the command line, but will not be advertised in any help messages.