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: examples/redaction-ruleset-project/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
This project shows an example of how MarkLogic 9 Redaction Rulesets can be loaded into a schemas
2
2
database from src/main/ml-schemas (the default path - this can be overridden via
3
-
mlSchemasPath).
3
+
`mlSchemaPaths`).
4
4
5
5
Note that in order for this to work, the content-database.json file must specify the schema
6
6
database that it's associated with. And in most cases, you'll want your own schemas database - not the default Schemas one - so schemas-database.json can be used to create own with a name based on mlAppName.
This project shows an example of how MarkLogic 9 schemas can be loaded into a schemas
2
-
database from src/main/ml-schemas (the default path - this can be overridden via
3
-
mlSchemasPath).
1
+
This project shows an example of how MarkLogic schemas can be loaded into a schemas
2
+
database from src/main/ml-schemas (the default path - this can be overridden via `mlSchemaPaths`).
4
3
5
4
Note that in order for this to work, the content-database.json file must specify the schema
6
-
database that it's associated with. And in most cases, you'll want your own schemas database - not the default Schemas one - so schemas-database.json can be used to create own with a name based on mlAppName.
5
+
database that it's associated with. And in most cases, you'll want your own schemas database - not the default
6
+
Schemas one - so schemas-database.json can be used to create a database with a name based on `mlAppName`.
@@ -188,7 +186,6 @@ class MarkLogicPlugin implements Plugin<Project> {
188
186
project.task("mlCreateTransform", type: CreateTransformTask, group: devGroup, description: "Create a new transform in the modules transforms directory; use -PtransformName and -PtransformType to set the transform name and type (xqy, xsl, or sjs)")
189
187
project.task("mlExportResources", type: ExportResourcesTask, group: devGroup, description: "Export resources based on a properties file specified via -PpropertiesFile, -Pprefix, or -Pregex; use -PincludeTypes to select resource types to export via a comma-delimited string; use -PexportPath to specify where to export resources to")
190
188
project.task("mlPrepareBundles", type: PrepareBundlesTask, group: devGroup, dependsOn: project.configurations["mlBundle"], description: "Downloads (if necessary) and unzips in the build directory all mlBundle dependencies")
191
-
project.task("mlPrepareRestApiDependencies", type: PrepareBundlesTask, group: devGroup, dependsOn: project.configurations["mlBundle"], description: "Deprecated in 3.13.0; please use mlPrepareBundles instead")
192
189
project.task("mlPrintCommands", type: PrintCommandsTask, group: devGroup, description: "Print information about each command used by mlDeploy and mlUndeploy")
193
190
project.task("mlPrintProperties", type: PrintPropertiesTask, group: devGroup, description: "Print all of the properties supported by ml-gradle")
194
191
project.task("mlPrintTokens", type: PrintTokensTask, group: devGroup, description: "Print the customTokens map on the mlAppConfig object (typically for debugging purposes)")
@@ -220,10 +217,10 @@ class MarkLogicPlugin implements Plugin<Project> {
220
217
project.task("mlEnableAllFlexrepTargets", type: EnableAllFlexrepTargetsTask, group: flexrepGroup, description: "Enable every target on every flexrep config")
221
218
222
219
String forestGroup ="ml-gradle Forest"
223
-
project.task("mlConfigureForestReplicas", type: ConfigureForestReplicasTask, group: forestGroup, description: "Deprecated - configure forest replicas via the command.forestNamesAndReplicaCounts map")
224
-
project.task("mlDeleteForestReplicas", type: DeleteForestReplicasTask, group: forestGroup, description: "Deprecated - delete forest replicas via the command.forestNamesAndReplicaCounts map; requires -Pconfirm=true to be set so this isn't accidentally executed")
220
+
project.task("mlConfigureForestReplicas", type: ConfigureForestReplicasTask, group: forestGroup, description: "Configures forest replicas based on ml-gradle properties")
221
+
project.task("mlDeleteForestReplicas", type: DeleteForestReplicasTask, group: forestGroup, description: "Deletes forest replicas based on ml-gradle properties; requires -Pconfirm=true to be set so this isn't accidentally executed")
225
222
project.task("mlDeployCustomForests", type: DeployCustomForestsTask, group: forestGroup, description: "Deploy custom forests as defined in subdirectories of the forests configuration directory")
226
-
project.task("mlDeployForestReplicas", type: DeployForestReplicasTask, group: forestGroup, description: "Prefer this over mlConfigureForestReplicas; it does the same thing, but uses the ConfigureForestReplicasCommand that is used by mlDeploy")
223
+
project.task("mlDeployForestReplicas", type: DeployForestReplicasTask, group: forestGroup, description: "Alias for mlConfigureForestReplicas for naming consistency")
227
224
project.task("mlPrintForestPlan", type: PrintForestPlanTask, group: forestGroup, description: "Print a list of primary forests to be created for a database specified by -Pdatabase=(name of database) when the database is next deployed. "+
228
225
"This is only intended to be used when forests are created dynamically via properties.")
0 commit comments