dev.quiro.sheath
所有者: Lorenzo Quiroli
A Kotlin 编译器插件,用于避免在 dagger-android 项目的大部分模块中添加 kapt。
https://github.com/quiro91/sheath
源代码:https://github.com/quiro91/sheath
使用 plugins DSL
plugins {
id("dev.quiro.sheath") version "0.6.3"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("dev.quiro.sheath:gradle-plugin:0.6.3")
}
}
apply(plugin = "dev.quiro.sheath")
使用 plugins DSL
plugins {
id "dev.quiro.sheath" version "0.6.3"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "dev.quiro.sheath:gradle-plugin:0.6.3"
}
}
apply plugin: "dev.quiro.sheath"