Skip to content

Instantly share code, notes, and snippets.

@dmi3coder
Last active June 6, 2020 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmi3coder/6110b8701686f81e6b18a8a376934e4d to your computer and use it in GitHub Desktop.
Save dmi3coder/6110b8701686f81e6b18a8a376934e4d to your computer and use it in GitHub Desktop.
Root command for Quarkus picocli example
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