Skip to content

Commit 9e7a009

Browse files
committed
add output_type parameter
1 parent 72a5e3e commit 9e7a009

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main/groovy/com/marklogic/gradle/task/MlcpTask.groovy

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ class MlcpTask extends JavaExec {
3434
String namespace
3535
String options_file
3636
String output_file_path
37+
String output_type
3738
String output_uri_prefix
3839
String output_uri_replace
3940
String output_permissions
@@ -117,6 +118,10 @@ class MlcpTask extends JavaExec {
117118
newArgs.add("-output_permissions")
118119
newArgs.add(output_permissions)
119120
}
121+
if (output_type) {
122+
newArgs.add("-output_type")
123+
newArgs.add(output_type)
124+
}
120125
if (transform_module) {
121126
newArgs.add("-transform_module")
122127
newArgs.add(transform_module)

0 commit comments

Comments
 (0)