com.marklogic.ml-development-tools
Owner:
MarkLogic
Gradle plugin for developing data services on MarkLogic
https://github.com/marklogic/java-client-api
Sources: git@github.com:marklogic/java-client-api.git
Version 6.4.1 (latest)
Created 30 November 2023.
ml-development-tools plugin for developing data services on MarkLogic
Using the plugins DSL:
plugins {
id("com.marklogic.ml-development-tools") version "6.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.marklogic:ml-development-tools:6.4.1")
}
}
apply(plugin = "com.marklogic.ml-development-tools")
Using the plugins DSL:
plugins {
id "com.marklogic.ml-development-tools" version "6.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.marklogic:ml-development-tools:6.4.1"
}
}
apply plugin: "com.marklogic.ml-development-tools"