Search Gradle plugins

Version 0.0.1 (latest)

Created 10 April 2024.

Provision and make it easy to use the shellcheck cli

Using the plugins DSL:

plugins {
  id("co.elastic.cli.shellcheck") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("co.elastic.gradle:shellcheck:0.0.1")
  }
}

apply(plugin = "co.elastic.cli.shellcheck")

Using the plugins DSL:

plugins {
  id "co.elastic.cli.shellcheck" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "co.elastic.gradle:shellcheck:0.0.1"
  }
}

apply plugin: "co.elastic.cli.shellcheck"

Learn how to apply plugins to subprojects