搜索Gradle插件

dev.teogor.stitch

所有者: Teodor Grigor

Stitch 处理 Room 模板代码,包括自动生成仓库、依赖注入集成和灵活的自定义。

https://source.teogor.dev/stitch

来源:https://github.com/teogor/stitch

版本 1.0.0-alpha02(最新版)

1.0.0-alpha02

创建于 2024年2月15日。

Stitch 处理 Room 模板代码,包括自动生成仓库、依赖注入集成和灵活的自定义。

使用 插件 DSL

plugins {
  id("dev.teogor.stitch") version "1.0.0-alpha02"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("dev.teogor.stitch:gradle-plugin:1.0.0-alpha02")
  }
}

apply(plugin = "dev.teogor.stitch")

使用 插件 DSL

plugins {
  id "dev.teogor.stitch" version "1.0.0-alpha02"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "dev.teogor.stitch:gradle-plugin:1.0.0-alpha02"
  }
}

apply plugin: "dev.teogor.stitch"

学习如何将插件应用到子项目中