We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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} with licenseKey=${key} and licensee=${licensee}" def adminConfig = adminManager.adminConfig adminConfig.host = hostname adminManager.adminConfig = adminConfig adminManager.init(key, licensee) } } }
The text was updated successfully, but these errors were encountered:
#434 Upgraded tests to JUnit 5
26bc350
No branches or pull requests
Sample code courtesy of @derms
The text was updated successfully, but these errors were encountered: