io.github.hankinghu.plugin
拥有者: hankinghu
asm trace
https://github.com/hankinghu/hanno
源代码: https://github.com/hankinghu/hanno.git
使用 plugins DSL
plugins {
id("io.github.hankinghu.plugin") version "1.1.5"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.hankinghu:hannoplugin:1.1.5")
}
}
apply(plugin = "io.github.hankinghu.plugin")
使用 plugins DSL
plugins {
id "io.github.hankinghu.plugin" version "1.1.5"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.hankinghu:hannoplugin:1.1.5"
}
}
apply plugin: "io.github.hankinghu.plugin"