Search Gradle plugins

Version 0.0.3

Created 27 August 2023.

Android Developer ASM Gradle Plugin

Using the plugins DSL:

plugins {
  id("io.github.leavesczy.trace") version "0.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.leavesczy:trace:0.0.3")
  }
}

apply(plugin = "io.github.leavesczy.trace")

Using the plugins DSL:

plugins {
  id "io.github.leavesczy.trace" version "0.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.leavesczy:trace:0.0.3"
  }
}

apply plugin: "io.github.leavesczy.trace"

Learn how to apply plugins to subprojects