Search Gradle plugins

com.nickbenn.room-schema-parser

Owner: Nicholas

Gradle plugin that can be used to parse & extract the DDL from a schema file generated by Room in an Android project.

https://nick-bennett.github.io/room-schema-parser-plugin/

Sources: https://github.com/nick-bennett/room-schema-parser-plugin.git

Version 1.0.0 (latest)

Created 13 May 2022.

Gradle plugin that can be used to parse & extract the DDL from a schema file generated by Room in an Android project.

Using the plugins DSL:

plugins {
  id("com.nickbenn.room-schema-parser") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.nickbenn:room-schema-parser-plugin:1.0.0")
  }
}

apply(plugin = "com.nickbenn.room-schema-parser")

Using the plugins DSL:

plugins {
  id "com.nickbenn.room-schema-parser" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.nickbenn:room-schema-parser-plugin:1.0.0"
  }
}

apply plugin: "com.nickbenn.room-schema-parser"

Learn how to apply plugins to subprojects