Last active
June 6, 2020 15:26
-
-
Save dmi3coder/6110b8701686f81e6b18a8a376934e4d to your computer and use it in GitHub Desktop.
Root command for Quarkus picocli example
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 net.quarkify.qdm; | |
import io.quarkus.picocli.runtime.annotations.TopCommand; | |
import static picocli.CommandLine.Command; | |
@TopCommand | |
@Command(mixinStandardHelpOptions = true, | |
version = "1.0.0" | |
) | |
public class QdmCommand implements Runnable { | |
@Override | |
public void run() { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment