Search Gradle plugins

dev.quiro.sheath

A Kotlin compiler plugin to avoid adding kapt to most modules in a dagger-android project.

https://github.com/quiro91/sheath

Sources: https://github.com/quiro91/sheath

Version 0.2.0-SNAPSHOT

Created 10 September 2020.

A Kotlin compiler plugin to avoid adding kapt to most modules in a dagger-android project.

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.quiro.sheath") version "0.2.0-SNAPSHOT"
}

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("dev.quiro.sheath:dev.quiro.sheath.gradle.plugin:0.2.0-SNAPSHOT")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("dev.quiro.sheath")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.quiro.sheath:dev.quiro.sheath.gradle.plugin:0.2.0-SNAPSHOT")
      }
    }
    
    apply(plugin = "dev.quiro.sheath")
  • Applying plugins to all subprojects .