Search Gradle plugins

Version 0.0.3

0.0.3

Created 31 May 2024.

heo-cli is provided as a gradle plugin

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "dev.heowc.heo"

Learn how to apply plugins to subprojects