You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 16, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: src/main/java/com/marklogic/appdeployer/cli/Options.java
+14-3Lines changed: 14 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -12,12 +12,15 @@ public class Options {
12
12
@Parameter(names = {"-f"}, description = "Path to properties file")
13
13
privateStringpropertiesFilePath;
14
14
15
-
@Parameter(names = {"-u"}, description = "Undo the given command (i.e. undeploy instead of deploy)")
16
-
privatebooleanundo;
17
-
18
15
@Parameter(names = {"-l"}, description = "Log level, as defined by Logback")
19
16
privateStringlogLevel = Level.INFO.levelStr;
20
17
18
+
@Parameter(names = {"-p"}, description = "Print a list of all supported properties")
19
+
privatebooleanprintProperties;
20
+
21
+
@Parameter(names = {"-u"}, description = "Undo the given command (i.e. undeploy instead of deploy)")
22
+
privatebooleanundo;
23
+
21
24
@DynamicParameter(names = "-P", description = "Use this argument to include any property defined by the ml-gradle Property Reference; e.g. -PmlAppName=example")
0 commit comments