com.github.muehmar.openapischema
Owner: Martin Mühlemann
Generate schema sources for Java from an OpenAPI 3.0 specification.
https://github.com/muehmar/gradle-openapi-schema
Sources: https://github.com/muehmar/gradle-openapi-schema.git
Version 3.3.1 (latest)
3.3.1
Created 16 October 2024.
Generate schema sources for Java from an OpenAPI 3.0 specification.
Using the plugins DSL:
plugins {
id("com.github.muehmar.openapischema") version "3.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.muehmar.openapischema:plugin:3.3.1")
}
}
apply(plugin = "com.github.muehmar.openapischema")
Using the plugins DSL:
plugins {
id "com.github.muehmar.openapischema" version "3.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.muehmar.openapischema:plugin:3.3.1"
}
}
apply plugin: "com.github.muehmar.openapischema"