com.mounacheikhna.jsongenerator
Owner: Mouna Cheikhna
Generates localized json with custom data
Sources: https://github.com/chemouna/JsonGenerator
Version 0.3 (latest)
0.3
Created 01 June 2016.
Generates localized json with custom data
Using the plugins DSL:
plugins {
id("com.mounacheikhna.jsongenerator") version "0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.mounacheikhna.jsongenerator:jsongenerator-plugin:0.3")
}
}
apply(plugin = "com.mounacheikhna.jsongenerator")
Using the plugins DSL:
plugins {
id "com.mounacheikhna.jsongenerator" version "0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.mounacheikhna.jsongenerator:jsongenerator-plugin:0.3"
}
}
apply plugin: "com.mounacheikhna.jsongenerator"