Search Gradle plugins

Version 0.0.1-SNAPSHOT-6

Created 25 April 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 "0.0.1-SNAPSHOT-6"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects