Search Gradle plugins

Version 0.0.1-SNAPSHOT-1

0.0.1-SNAPSHOT-1

Created 23 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 "0.0.1-SNAPSHOT-1"
}

See also:

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