Reputation: 722
Here are a few commands of gradle that I came across:
gradle mlDeploy
gradle storeDeploy
gradle dmfCompileRules
gradle generateDMFInputSDM
Can anyone explain the use of each of these tasks?
Upvotes: 0
Views: 34
Reputation: 2236
Those last 3 all look like custom tasks that someone on your team defined in your build.gradle file.
Upvotes: 0
Reputation: 76809
The names of the tasks already tell what they are supposed to do, don't they (at least while knowing what ML
, DFM
and SDM
mean in the MarkLogic context)? And usually each Gradle task has a description, which explains what it does (or at least should). Just ask for help
:
gradle help --task mlDeploy
gradle help --task storeDeploy
gradle help --task dmfCompileRules
gradle help --task generateDMFInputSDM
Upvotes: 1