搜索 Gradle 插件

版本 0.40(最新版)

0.40

创建于 2023 年 2 月 10 日。

方法跟踪的 Gradle 插件

使用 plugins DSL

plugins {
  id("io.github.season-max.methodTrace") version "0.40"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.season-max:trace_plugin:0.40")
  }
}

apply(plugin = "io.github.season-max.methodTrace")

使用 plugins DSL

plugins {
  id "io.github.season-max.methodTrace" version "0.40"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.season-max:trace_plugin:0.40"
  }
}

apply plugin: "io.github.season-max.methodTrace"

了解如何将插件应用于子项目