io.github.sergeshustoff.dikt
拥有者: Serge Shustoff
为Kotlin多平台提供一个简单的DI,编译时进行依赖图验证。
https://github.com/sergeshustoff/dikt
来源: https://github.com/sergeshustoff/dikt
使用插件DSL
plugins {
id("io.github.sergeshustoff.dikt") version "1.1.0-kotlin-2.0.0"
}
使用旧插件应用方式
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.sergeshustoff.dikt:dikt-gradle-plugin:1.1.0-kotlin-2.0.0")
}
}
apply(plugin = "io.github.sergeshustoff.dikt")
使用插件DSL
plugins {
id "io.github.sergeshustoff.dikt" version "1.1.0-kotlin-2.0.0"
}
使用旧插件应用方式
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.sergeshustoff.dikt:dikt-gradle-plugin:1.1.0-kotlin-2.0.0"
}
}
apply plugin: "io.github.sergeshustoff.dikt"