Search Gradle plugins

Version 3.10.0 (latest)

Created 21 February 2024.

SmallRye: MicroProfile OpenAPI Gradle Plugin

Using the plugins DSL:

plugins {
  id("io.smallrye.openapi") version "3.10.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.smallrye:smallrye-open-api-gradle-plugin:3.10.0")
  }
}

apply(plugin = "io.smallrye.openapi")

Using the plugins DSL:

plugins {
  id "io.smallrye.openapi" version "3.10.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.smallrye:smallrye-open-api-gradle-plugin:3.10.0"
  }
}

apply plugin: "io.smallrye.openapi"

Learn how to apply plugins to subprojects