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.1

1.0.1

Created 14 March 2018.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.deckyfx:gdgengradle:1.0.1")
      }
    }
    
    apply(plugin = "com.github.deckyfx.gdgengradle")
  • Applying plugins to all subprojects .