com.squareup.hephaestus
Owner: Ralf Wondratschek
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-1.4-M3
1.0.4-1.4-M3
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-1.4-M3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.squareup.hephaestus:gradle-plugin:1.0.4-1.4-M3")
}
}
apply(plugin = "com.squareup.hephaestus")
Using the plugins DSL:
plugins {
id "com.squareup.hephaestus" version "1.0.4-1.4-M3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.squareup.hephaestus:gradle-plugin:1.0.4-1.4-M3"
}
}
apply plugin: "com.squareup.hephaestus"