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