com.theblueground.json.schema.jvm.gradle-plugin
从注解类生成 JSON 模式
https://github.com/bluegroundltd/json-schema-jvm
来源: https://github.com/bluegroundltd/json-schema-jvm.git
使用 插件 DSL
plugins {
id("com.theblueground.json.schema.jvm.gradle-plugin") version "1.0.2"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.theblueground:gradle-plugin:1.0.2")
}
}
apply(plugin = "com.theblueground.json.schema.jvm.gradle-plugin")
使用 插件 DSL
plugins {
id "com.theblueground.json.schema.jvm.gradle-plugin" version "1.0.2"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.theblueground:gradle-plugin:1.0.2"
}
}
apply plugin: "com.theblueground.json.schema.jvm.gradle-plugin"