Search Gradle plugins

com.github.deckyfx.gdgengradle

Create greendao3 Model automatically on build its read from JSON file schema, and also handle version upgrade migration

https://github.com/deckyfx/gdgengradle

Sources: https://github.com/deckyfx/gdgengradle

Version 1.0.7

Created 31 May 2018.

Create greendao3 Model automatically on build its read from JSON file schema, and also handle version upgrade migration

Using the plugins DSL:

plugins {
  id("com.github.deckyfx.gdgengradle") version "1.0.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.deckyfx:gdgengradle:1.0.7")
  }
}

apply(plugin = "com.github.deckyfx.gdgengradle")

Using the plugins DSL:

plugins {
  id "com.github.deckyfx.gdgengradle" version "1.0.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.deckyfx:gdgengradle:1.0.7"
  }
}

apply plugin: "com.github.deckyfx.gdgengradle"

Learn how to apply plugins to subprojects