File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ public enum AppJobStatus {
77 DRAFT ,
88 SCHEDULED ,
99 READY ,
10+ QUEUED ,
1011 PREPARE ,
1112 RUNNING ,
1213 COMPLETE ,
Original file line number Diff line number Diff line change @@ -47,8 +47,8 @@ public static void main(String[] args) throws Exception {
4747 Option .builder ("v" ).longOpt ("validate" ).required (false ).hasArg (true ).
4848 desc ("Validate property file" ).build ();
4949 Option optHelp =
50- Option .builder ("h " ).longOpt ("help " ).required (false ).hasArg (false ).
51- desc ("Print list of available properties" ).build ();
50+ Option .builder ("m " ).longOpt ("markdown " ).required (false ).hasArg (false ).
51+ desc ("Print markdown table of available properties" ).build ();
5252 Options options = new Options ();
5353 options .addOption (optValidate );
5454 options .addOption (optHelp );
You can’t perform that action at this time.
0 commit comments