Search Gradle plugins

dev.teogor.stitch

Stitch handles the Room boilerplate, including automatic generation of repositories, dependency injection integration, and flexible customizations.

https://source.teogor.dev/stitch

Sources: https://github.com/teogor/stitch

Version 1.0.0-alpha02 (latest)

Created 15 February 2024.

Stitch handles the Room boilerplate, including automatic generation of repositories, dependency injection integration, and flexible customizations.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "dev.teogor.stitch"

Learn how to apply plugins to subprojects