Results 21 comments of Mads Hansen

Yes, would be great to have for other types of artifacts as well. I would love to see ml-gradle become more “groovy”. It would be nice to at least have...

I just successfully deployed the examples/alert-project. The error message that it provides isn't super helpful. I think it just means that the call failed, but it doesn't provide any useful...

You could do that fairly easily with a custom task that extends ServerEvalTask. Below is an example. You would either need to replace `YOUR-USERNAME-GOES-HERE` with your username, or a reference...

https://github.com/marklogic/java-client-api/blob/master/marklogic-client-api/build.gradle#L85 It seems that textdescription '$project.description' isn't being resolved the same way that the name is: name '$rootProject.describedName'

May need to change single quotes to double-quotes, so that it's a GString that will expand the variable: textdescription "$project.description"

No, I haven't worked on it yet. But I think it would be really useful! I'll update if I make any progress or will submit a PR if I can...

Not sure if we are planning to make updates here, or only on ml-unit-test project moving forward, but I was able to get it ported over and running in the...

If you set a system property for `XCC-CONNECTION-URI` (or the more specific `XCC-*` options) outside of the task, rather than setting them with `-D` switches, then the CoRB task should...

You could also have your `deleteDocs` task write the options to a temp file in a pre task, and then delete in a post task dependency, and use that temp...

Do you have an example project that demonstrates the issue? A task such as this works for me and I can run `./gradlew corb`: ``` task corb(type: com.marklogic.gradle.task.CorbTask) { xccProtocol="xccs"...