com.github.slamdev.openapi-spring-generator
Owner: Valentin Fedoskin
OpenAPI Generator for Java Spring framework
https://github.com/slamdev/openapi-spring-generator
Sources: https://github.com/slamdev/openapi-spring-generator.git
Version 0.2.2 (latest)
0.2.2
Created 22 February 2024.
OpenAPI Generator for Java Spring framework
Using the plugins DSL:
plugins {
id("com.github.slamdev.openapi-spring-generator") version "0.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.slamdev.openapispringgenerator:plugin:0.2.2")
}
}
apply(plugin = "com.github.slamdev.openapi-spring-generator")
Using the plugins DSL:
plugins {
id "com.github.slamdev.openapi-spring-generator" version "0.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.slamdev.openapispringgenerator:plugin:0.2.2"
}
}
apply plugin: "com.github.slamdev.openapi-spring-generator"