Search Gradle plugins

Version 0.0.6 (latest)

0.0.6

Created 04 August 2024.

heo-cli is provided as a gradle plugin

Using the plugins DSL:

plugins {
  id("dev.heowc.heo") version "0.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.heowc.heo:heo-gradle-plugin:0.0.6")
  }
}

apply(plugin = "dev.heowc.heo")

Using the plugins DSL:

plugins {
  id "dev.heowc.heo" version "0.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.heowc.heo:heo-gradle-plugin:0.0.6"
  }
}

apply plugin: "dev.heowc.heo"

Learn how to apply plugins to subprojects