com.squareup.hephaestus
所有者: Ralf Wondratschek
一款 Kotlin 编译器插件,通过自动合并 Dagger 模块和组件接口来简化使用 Dagger 2 进行依赖注入。
https://github.com/square/hephaestus
来源: https://github.com/square/hephaestus
版本 1.0.4-1.4-M3
1.0.4-1.4-M3
创建于 2020 年 7 月 24 日。
一款 Kotlin 编译器插件,通过自动合并 Dagger 模块和组件接口来简化使用 Dagger 2 进行依赖注入。
使用 plugins DSL
plugins {
id("com.squareup.hephaestus") version "1.0.4-1.4-M3"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.squareup.hephaestus:gradle-plugin:1.0.4-1.4-M3")
}
}
apply(plugin = "com.squareup.hephaestus")
使用 plugins DSL
plugins {
id "com.squareup.hephaestus" version "1.0.4-1.4-M3"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.squareup.hephaestus:gradle-plugin:1.0.4-1.4-M3"
}
}
apply plugin: "com.squareup.hephaestus"