Search Gradle plugins

be.nrb.dt.swagger

Plugin to generate model and client from a swagger file. The generated code is based on lombok and Spring webclient

https://nrbdigital.be

Sources: https://github.com/brunofrankinrb/nrb-dt-swagger-plugin

Version 1.0.16 (latest)

1.0.16

Created 01 June 2021.

Plugin to generate model and client from a swagger file. The generated code is based on lombok and Spring webclient

Add this plugin to your build using the plugins DSL:

plugins {
  id("be.nrb.dt.swagger") version "1.0.16"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("be.nrb.dt:nrb-dt-swagger-plugin:1.0.16")
      }
    }
    
    apply(plugin = "be.nrb.dt.swagger")
  • Applying plugins to all subprojects .