Search Gradle plugins

Version 0.0.3-preview (latest)

0.0.3-preview

Created 31 December 2019.

Experiment on implementation of dagger2 code generation through Kotlin compiler

Add this plugin to your build using the plugins DSL:

plugins {
  id("me.shika.dagger-compiler-plugin") version "0.0.3-preview"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("me.shika.di:dagger-compiler-plugin:0.0.3-preview")
      }
    }
    
    apply(plugin = "me.shika.dagger-compiler-plugin")
  • Applying plugins to all subprojects .