搜索 Gradle 插件

dev.quiro.sheath

所有者: Lorenzo Quiroli

A Kotlin 编译器插件,用于避免在 dagger-android 项目的大部分模块中添加 kapt。

https://github.com/quiro91/sheath

源代码:https://github.com/quiro91/sheath

版本 0.6.3 (最新)

0.6.3

创建于 2021 年 4 月 16 日。

A Kotlin 编译器插件,用于避免在 dagger-android 项目的大部分模块中添加 kapt。

使用 plugins DSL

plugins {
  id("dev.quiro.sheath") version "0.6.3"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("dev.quiro.sheath:gradle-plugin:0.6.3")
  }
}

apply(plugin = "dev.quiro.sheath")

使用 plugins DSL

plugins {
  id "dev.quiro.sheath" version "0.6.3"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "dev.quiro.sheath:gradle-plugin:0.6.3"
  }
}

apply plugin: "dev.quiro.sheath"

了解如何将插件应用于子项目