Search Gradle plugins

com.squareup.hephaestus

A Kotlin compiler plugin to make dependency injection with Dagger 2 easier by automatically merging Dagger modules and component interfaces.

https://github.com/square/hephaestus

Sources: https://github.com/square/hephaestus

Version 1.0.4-SNAPSHOT

Created 24 July 2020.

A Kotlin compiler plugin to make dependency injection with Dagger 2 easier by automatically merging Dagger modules and component interfaces.

Using the plugins DSL:

plugins {
  id("com.squareup.hephaestus") version "1.0.4-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.squareup.hephaestus:gradle-plugin:1.0.4-SNAPSHOT")
  }
}

apply(plugin = "com.squareup.hephaestus")

Using the plugins DSL:

plugins {
  id "com.squareup.hephaestus" version "1.0.4-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.squareup.hephaestus:gradle-plugin:1.0.4-SNAPSHOT"
  }
}

apply plugin: "com.squareup.hephaestus"

Learn how to apply plugins to subprojects