io.github.tunguski
所有者: Marek Romanowski
将接口添加到其他插件生成的类中
https://github.com/tunguski/interfacer
来源:https://github.com/tunguski/interfacer
版本 0.0.7 (最新)
0.0.7
创建于 2022年4月30日。
将接口添加到其他插件生成的类中
使用plugins DSL
plugins {
id("io.github.tunguski") version "0.0.7"
}
使用传统插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.tunguski:interfacer-gradle-plugin:0.0.7")
}
}
apply(plugin = "io.github.tunguski")
使用plugins DSL
plugins {
id "io.github.tunguski" version "0.0.7"
}
使用传统插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.tunguski:interfacer-gradle-plugin:0.0.7"
}
}
apply plugin: "io.github.tunguski"