Search Gradle plugins

Version 1.0.1

1.0.1

Created 22 July 2024.

Generate JSON schema from annotated classes

Using the plugins DSL:

plugins {
  id("com.theblueground.json.schema.jvm.gradle-plugin") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.theblueground:gradle-plugin:1.0.1")
  }
}

apply(plugin = "com.theblueground.json.schema.jvm.gradle-plugin")

Using the plugins DSL:

plugins {
  id "com.theblueground.json.schema.jvm.gradle-plugin" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.theblueground:gradle-plugin:1.0.1"
  }
}

apply plugin: "com.theblueground.json.schema.jvm.gradle-plugin"

Learn how to apply plugins to subprojects