cn.cxzheng.asmtraceman
所有者: DavidSu
方法耗时跟踪(方法耗时插桩)
https://github.com/zhengcx/MethodTraceMan
来源: https://github.com/zhengcx/MethodTraceMan.git
使用 plugins DSL
plugins {
id("cn.cxzheng.asmtraceman") version "1.0.4"
}
使用 传统插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.cn.cxzheng.methodTracePlugin:tracemanplugin:1.0.4")
}
}
apply(plugin = "cn.cxzheng.asmtraceman")
使用 plugins DSL
plugins {
id "cn.cxzheng.asmtraceman" version "1.0.4"
}
使用 传统插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.cn.cxzheng.methodTracePlugin:tracemanplugin:1.0.4"
}
}
apply plugin: "cn.cxzheng.asmtraceman"