com.github.deckyfx.gdgengradle
Owner: Decky Fiyemonda
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.3
1.0.3
Created 16 March 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.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.deckyfx:gdgengradle:1.0.3")
}
}
apply(plugin = "com.github.deckyfx.gdgengradle")
Using the plugins DSL:
plugins {
id "com.github.deckyfx.gdgengradle" version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.deckyfx:gdgengradle:1.0.3"
}
}
apply plugin: "com.github.deckyfx.gdgengradle"