be.nrb.dt.swagger
Owner:
Bruno Franki
Plugin to generate model and client from a swagger file. The generated code is based on lombok and Spring webclient
Sources: https://github.com/brunofrankinrb/nrb-dt-swagger-plugin
Version 1.0.9
Created 04 April 2020.
Plugin to generate model and client from a swagger file. The generated code is based on lombok and Spring webclient
Using the plugins DSL:
plugins {
id("be.nrb.dt.swagger") version "1.0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("be.nrb.dt:nrb-dt-swagger-plugin:1.0.9")
}
}
apply(plugin = "be.nrb.dt.swagger")
Using the plugins DSL:
plugins {
id "be.nrb.dt.swagger" version "1.0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "be.nrb.dt:nrb-dt-swagger-plugin:1.0.9"
}
}
apply plugin: "be.nrb.dt.swagger"