me.shika.dagger-reflect-compiler-plugin
所有者: Andrei Shikov
编译器插件,用于生成dagger-reflect的Kotlin构建者和工厂,无需kapt
https://github.com/ShikaSD/kotlin-dagger-reflect-compiler
源代码: https://github.com/ShikaSD/kotlin-dagger-reflect-compiler.git
版本 1.0.3-SNAPSHOT(最新版本)
1.0.3-SNAPSHOT
创建于2020年6月15日。
编译器插件,用于生成dagger-reflect的Kotlin构建者和工厂,无需kapt
使用 插件DSL
plugins {
id("me.shika.dagger-reflect-compiler-plugin") version "1.0.3-SNAPSHOT"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("me.shika:dagger-reflect-compiler-plugin:1.0.3-SNAPSHOT")
}
}
apply(plugin = "me.shika.dagger-reflect-compiler-plugin")
使用 插件DSL
plugins {
id "me.shika.dagger-reflect-compiler-plugin" version "1.0.3-SNAPSHOT"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "me.shika:dagger-reflect-compiler-plugin:1.0.3-SNAPSHOT"
}
}
apply plugin: "me.shika.dagger-reflect-compiler-plugin"