Search Gradle plugins

com.kroegerama.openapi-kgen.gradle-plugin

Owner: Chris

Generate modern API Clients in Kotlin from OpenAPI specifications. Supports OpenAPI >= 3.0.0.

https://github.com/kroegerama/openapi-kgen

Sources: https://github.com/kroegerama/openapi-kgen.git

Version 0.11.0

0.11.0

Created 16 November 2020.

Generate modern API Clients in Kotlin from OpenAPI specifications. Supports OpenAPI >= 3.0.0.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.kroegerama.openapi-kgen.gradle-plugin") version "0.11.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.kroegerama.openapi-kgen:gradle-plugin:0.11.0")
      }
    }
    
    apply(plugin = "com.kroegerama.openapi-kgen.gradle-plugin")
  • Applying plugins to all subprojects .