com.marklogic.ml-data-hub
Owner: MarkLogic
Gradle plugin for configuring and deploying the MarkLogic Data Hub
https://marklogic.github.io/marklogic-data-hub/
Sources: git@github.com:marklogic/marklogic-data-hub.git
Version 4.0.2
4.0.2
Created 06 November 2018.
Gradle plugin for configuring and deploying the MarkLogic Data Hub
Using the plugins DSL:
plugins {
id("com.marklogic.ml-data-hub") version "4.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.marklogic:ml-data-hub:4.0.2")
}
}
apply(plugin = "com.marklogic.ml-data-hub")
Using the plugins DSL:
plugins {
id "com.marklogic.ml-data-hub" version "4.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.marklogic:ml-data-hub:4.0.2"
}
}
apply plugin: "com.marklogic.ml-data-hub"