Search Gradle plugins

Version 0.1.0

0.1.0

Created 23 May 2024.

Provision and make it easy to use the manifest tool cli

Using the plugins DSL:

plugins {
  id("co.elastic.cli.manifest-tool") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("co.elastic.gradle:manifest-tool:0.1.0")
  }
}

apply(plugin = "co.elastic.cli.manifest-tool")

Using the plugins DSL:

plugins {
  id "co.elastic.cli.manifest-tool" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "co.elastic.gradle:manifest-tool:0.1.0"
  }
}

apply plugin: "co.elastic.cli.manifest-tool"

Learn how to apply plugins to subprojects