Search Gradle plugins

Version 1.0.3-SNAPSHOT (latest)

Created 15 June 2020.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("me.shika:dagger-reflect-compiler-plugin:1.0.3-SNAPSHOT")
  }
}

apply(plugin = "me.shika.dagger-reflect-compiler-plugin")

Using the plugins DSL:

plugins {
  id "me.shika.dagger-reflect-compiler-plugin" version "1.0.3-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "me.shika:dagger-reflect-compiler-plugin:1.0.3-SNAPSHOT"
  }
}

apply plugin: "me.shika.dagger-reflect-compiler-plugin"

Learn how to apply plugins to subprojects