Search Gradle plugins

com.marklogic.ml-gradle

Gradle plugin for configuring and deploying applications to MarkLogic

https://www.marklogic.com/

Sources: https://github.com/rjrudin/ml-gradle.git

Using the plugins DSL:

plugins {
  id("com.marklogic.ml-gradle") version "2.0rc1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.marklogic:ml-gradle:2.0rc1")
  }
}

apply(plugin = "com.marklogic.ml-gradle")

Using the plugins DSL:

plugins {
  id "com.marklogic.ml-gradle" version "2.0rc1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.marklogic:ml-gradle:2.0rc1"
  }
}

apply plugin: "com.marklogic.ml-gradle"

Learn how to apply plugins to subprojects