Created
April 26, 2020 11:33
-
-
Save dmi3coder/492f71ac2578bb3a531a343ebde6978e to your computer and use it in GitHub Desktop.
Example of Root QuarkusCommand with Picocli
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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