io.github.fomin.oas-gen
Owner: Andrey Fomin
Generates clients and servers from OpenAPI
https://github.com/fomin/oas-gen/
Sources: https://github.com/fomin/oas-gen.git
Version 0.2.2 (latest)
0.2.2
Created 30 March 2022.
Generates clients and servers from OpenAPI
Using the plugins DSL:
plugins {
id("io.github.fomin.oas-gen") version "0.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.fomin.oas-gen:gradle-plugin:0.2.2")
}
}
apply(plugin = "io.github.fomin.oas-gen")
Using the plugins DSL:
plugins {
id "io.github.fomin.oas-gen" version "0.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.fomin.oas-gen:gradle-plugin:0.2.2"
}
}
apply plugin: "io.github.fomin.oas-gen"