me.shika.dagger-compiler-plugin
Owner: Andrei Shikov
Experiment on implementation of dagger2 code generation through Kotlin compiler
https://github.com/ShikaSD/kotlin-compiler-di
Sources: https://github.com/ShikaSD/kotlin-compiler-di.git
Version 0.0.2-preview-r2
0.0.2-preview-r2
Created 30 January 2020.
Experiment on implementation of dagger2 code generation through Kotlin compiler
Using the plugins DSL:
plugins {
id("me.shika.dagger-compiler-plugin") version "0.0.2-preview-r2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("me.shika.di:dagger-compiler-plugin:0.0.2-preview-r2")
}
}
apply(plugin = "me.shika.dagger-compiler-plugin")
Using the plugins DSL:
plugins {
id "me.shika.dagger-compiler-plugin" version "0.0.2-preview-r2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "me.shika.di:dagger-compiler-plugin:0.0.2-preview-r2"
}
}
apply plugin: "me.shika.dagger-compiler-plugin"