Search Gradle plugins

Version 0.1.0

Created 09 January 2024.

Generates Kotlin code from an OpenAPI 3 specification.

Using the plugins DSL:

plugins {
  id("ch.acanda.gradle.fabrikt") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ch.acanda.gradle:fabrikt-gradle-plugin:0.1.0")
  }
}

apply(plugin = "ch.acanda.gradle.fabrikt")

Using the plugins DSL:

plugins {
  id "ch.acanda.gradle.fabrikt" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ch.acanda.gradle:fabrikt-gradle-plugin:0.1.0"
  }
}

apply plugin: "ch.acanda.gradle.fabrikt"

Learn how to apply plugins to subprojects