Skip to content

Instantly share code, notes, and snippets.

@dmi3coder
Created April 26, 2020 11:33
Show Gist options
  • Save dmi3coder/492f71ac2578bb3a531a343ebde6978e to your computer and use it in GitHub Desktop.
Save dmi3coder/492f71ac2578bb3a531a343ebde6978e to your computer and use it in GitHub Desktop.
Example of Root QuarkusCommand with Picocli
package org.acme.getting.started.command;
import picocli.CommandLine;
@CommandLine.Command(subcommands = {
CommandLine.HelpCommand.class
// Put here more static commands, that don't require Dependency Injection
})
public class QuarkusCommand {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment