Search Gradle plugins

io.bkbn.skribe

Gradle plugin for generating rich API clients from a variety of spec formats

https://github.com/bkbnio

Sources: https://github.com/bkbnio/skribe

Version 0.2.7

Created 18 May 2023.

Gradle plugin for generating rich API clients from a variety of spec formats

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.bkbn.skribe") version "0.2.7"
}

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("io.bkbn.skribe:io.bkbn.skribe.gradle.plugin:0.2.7")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.bkbn.skribe")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.bkbn.skribe:io.bkbn.skribe.gradle.plugin:0.2.7")
      }
    }
    
    apply(plugin = "io.bkbn.skribe")
  • Applying plugins to all subprojects .