Search Gradle plugins

Version 1.0.0-SNAPSHOT

1.0.0-SNAPSHOT

Created 25 April 2020.

Compiler plugin to generate Kotlin builders and factories for dagger-reflect without kapt

Add this plugin to your build using the plugins DSL:

plugins {
  id("me.shika.dagger-reflect-compiler-plugin") version "1.0.0-SNAPSHOT"
}

See also:

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