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.0

0.2.0

Created 11 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.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.bkbn:skribe-plugin:0.2.0")
      }
    }
    
    apply(plugin = "io.bkbn.skribe")
  • Applying plugins to all subprojects .