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.8 (latest)

1.0.8

Created 12 May 2019.

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.8"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects