ml-gradle
ml-gradle copied to clipboard
Gradle plugin for automating everything involving MarkLogic
It would be very handy if one could specify a comma separated list of gradle tasks to disable. We now solved it like below snippet: ```` if ( environmentNameLabel !=...
Hi. I have upgraded to version 3.16. Upon doing that all my templates have stopped loading. They worked up until 3.15. Using --stacktrace I got this error. I know the...
The alerting example project shows how to do this, but need to tie that into a page about CPF.
An issue that we ran into is that over time we have accumulated triggers that may either be renamed or removed between deployments. We don't want to perform an `mlClearTriggersDatabase`,...
While investigating issues reported for issue #373 I was having trouble reproducing the symptoms. It turned out that the dependencies in the example/corb build.gradle had an old version of ml-gradle...
Sample code courtesy of @derms ``` task initHosts(type: com.marklogic.gradle.task.MarkLogicTask) { doLast{ def hostManager = new com.marklogic.mgmt.resource.hosts.HostManager(manageClient) def key = findProperty("mlLicenseKey") def licensee = findProperty("mlLicensee") hostManager.hostNames.each{ hostname -> println "Init ${hostname}...
The issue is described in [https://stackoverflow.com/questions/73565288/how-to-show-mlcp-copy-summary-at-the-end-of-the-copy-process](https://stackoverflow.com/questions/73565288/how-to-show-mlcp-copy-summary-at-the-end-of-the-copy-process) **Describe the bug** I think it is related to the MLCP 10.0,9 . The summary of that task run is missing since 10.0.6.2 I...
The mlcp dependency no longer excludes anything. This will result in SLF4J warning about multiple bindings, but the logback logging will still work. Getting rid of that warning is possible,...
This is in ml-gradle 4.3.6; logging looks like this: ``` Updating build.gradle so that the Gradle properties plugin can be applied Writing: build.gradle Writing: gradle.properties Writing: gradle-dev.properties Writing: gradle-local.properties Writing:...
We have enabled https on certain ports, and needed to switch CorbTask to use xccs. I first tried to use xccProtocol property inside the task, but that resulted in a...