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.0-beta01
Created 16 June 2020.
                A Kotlin compiler plugin to make dependency injection with Dagger 2 easier by automatically merging Dagger modules and component interfaces.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.squareup.hephaestus") version "1.0.0-beta01"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.squareup.hephaestus:com.squareup.hephaestus.gradle.plugin:1.0.0-beta01") }It can then be applied in the precompiled script plugin:plugins { id("com.squareup.hephaestus") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.squareup.hephaestus:com.squareup.hephaestus.gradle.plugin:1.0.0-beta01") } } apply(plugin = "com.squareup.hephaestus")
- Applying plugins to all subprojects .