package com.github.icelyframework.cli;
import picocli.CommandLine.Command;
import picocli.CommandLine.Help.Ansi;
import picocli.CommandLine.Option;
@command(name = "merge", description = "",
mixinStandardHelpOptions = true)
final public class MergeCommand implements Runnable {
@option(names = {"--verbose"}, description = "Print verbose output.")
boolean verbose;
@Override
public void run() {
if (verbose) {
}
}
}
e.x the run method looks like nothing is implemented.
package com.github.icelyframework.cli;
import picocli.CommandLine.Command;
import picocli.CommandLine.Help.Ansi;
import picocli.CommandLine.Option;
@command(name = "merge", description = "",
mixinStandardHelpOptions = true)
final public class MergeCommand implements Runnable {
@option(names = {"--verbose"}, description = "Print verbose output.")
boolean verbose;
}
e.x the run method looks like nothing is implemented.