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.17.0 (latest)

Created 17 December 2024.

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.17.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.kroegerama.openapi-kgen.gradle-plugin:com.kroegerama.openapi-kgen.gradle-plugin.gradle.plugin:0.17.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.kroegerama.openapi-kgen.gradle-plugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.kroegerama.openapi-kgen.gradle-plugin:com.kroegerama.openapi-kgen.gradle-plugin.gradle.plugin:0.17.0")
      }
    }
    
    apply(plugin = "com.kroegerama.openapi-kgen.gradle-plugin")
  • Applying plugins to all subprojects .