io.github.season-max.methodTrace
Owner: season
gradle plugin for method trace
https://github.com/season-max/methodTrace
Sources: https://github.com/season-max/methodTrace
Using the plugins DSL:
plugins {
id("io.github.season-max.methodTrace") version "0.40"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.season-max:trace_plugin:0.40")
}
}
apply(plugin = "io.github.season-max.methodTrace")
Using the plugins DSL:
plugins {
id "io.github.season-max.methodTrace" version "0.40"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.season-max:trace_plugin:0.40"
}
}
apply plugin: "io.github.season-max.methodTrace"