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
Copy file name to clipboardExpand all lines: src/main/groovy/com/marklogic/gradle/MarkLogicPlugin.groovy
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -132,24 +132,24 @@ class MarkLogicPlugin implements Plugin<Project> {
132
132
String dmGroupMessage ="; can also set the properties threadCount, batchSize, applyConsistentSnapshot, "+
133
133
"jobName, and logBatches to configure how the Data Movement QueryBatcher operates.";
134
134
project.task("mlAddCollections", type: AddCollectionsTask, group: dmGroup, description: "Add all documents, either in a comma-separated list of "+
135
-
"collection names specified by the 'whereCollections' property or matching a URI pattern specified by the 'whereUriPattern' property, "+
135
+
"collection names specified by the 'whereCollections' property or matching a URI pattern specified by the 'whereUriPattern' property or matching a URIs query specified by the 'whereUrisQuery' property, "+
136
136
"to a comma-separated list of collection names specified by the 'collections' property"+ dmGroupMessage)
137
137
project.task("mlDeleteCollections", type: DeleteCollectionsTask, group: dmGroup, description: "Delete all documents in a comma-separated list of "+
138
138
"collection names specified by the 'collections' property"+ dmGroupMessage)
139
139
project.task("mlRemoveCollections", type: RemoveCollectionsTask, group: dmGroup, description: "Remove all documents, either in a comma-separated list of "+
140
-
"collection names specified by the 'whereCollections' property or matching a URI pattern specified by the 'whereUriPattern' property, "+
140
+
"collection names specified by the 'whereCollections' property or matching a URI pattern specified by the 'whereUriPattern' property or matching a URIs query specified by the 'whereUrisQuery' property, "+
141
141
"from a comma-separated list of collection names specified by the 'collections' property; "+
142
142
"if the values of 'whereCollections' and 'collections' are the same, you only need to specify the 'collections' property"+ dmGroupMessage)
143
143
project.task("mlSetCollections", type: SetCollectionsTask, group: dmGroup, description: "Set collections on all documents, either in a comma-separated list of "+
144
-
"collection names specified by the 'whereCollections' property or matching a URI pattern specified by the 'whereUriPattern' property, "+
144
+
"collection names specified by the 'whereCollections' property or matching a URI pattern specified by the 'whereUriPattern' property or matching a URIs query specified by the 'whereUrisQuery' property, "+
145
145
"to a comma-separated list of collection names specified by the 'collections' property"+ dmGroupMessage)
146
146
147
147
project.task("mlAddPermissions", type: AddPermissionsTask, group: dmGroup, description: "Add permissions, specified as a comma-separated list of roles and capabilities via the 'permissions' property, "+
148
-
"to all documents either in the set of collection names specified by the 'collections' property or with URIs matching the pattern specified by the 'whereUriPattern' property"+ dmGroupMessage)
148
+
"to all documents either in the set of collection names specified by the 'collections' property or with URIs matching the pattern specified by the 'whereUriPattern' property or matching a URIs query specified by the 'whereUrisQuery' property"+ dmGroupMessage)
149
149
project.task("mlRemovePermissions", type: RemovePermissionsTask, group: dmGroup, description: "Remove permissions, specified as a comma-separated list of roles and capabilities via the 'permissions' property, "+
150
-
"from all documents either in the set of collection names specified by the 'collections' property or with URIs matching the pattern specified by the 'whereUriPattern' property"+ dmGroupMessage)
150
+
"from all documents either in the set of collection names specified by the 'collections' property or with URIs matching the pattern specified by the 'whereUriPattern' property or matching a URIs query specified by the 'whereUrisQuery' property"+ dmGroupMessage)
151
151
project.task("mlSetPermissions", type: SetPermissionsTask, group: dmGroup, description: "Set permissions, specified as a comma-separated list of roles and capabilities via the 'permissions' property, "+
152
-
"on all documents in the set of collection names specified by the 'collections' property or with URIs matching the pattern specified by the 'whereUriPattern' property"+ dmGroupMessage)
152
+
"on all documents in the set of collection names specified by the 'collections' property or with URIs matching the pattern specified by the 'whereUriPattern' property or matching a URIs query specified by the 'whereUrisQuery' property"+ dmGroupMessage)
153
153
154
154
String devGroup ="ml-gradle Development"
155
155
project.task("mlCreateResource", type: CreateResourceTask, group: devGroup, description: "Create a new resource extension in the modules services directory; use -PresourceName and -PresourceType to set the resource name and type (either xqy or sjs)")
0 commit comments