Search Gradle plugins

Version 0.1.0-0 (latest)

Created 01 February 2024.

Lint your OpenAPI docs with Spectral

Using the plugins DSL:

plugins {
  id("io.github.michael-nestler.spectral") version "0.1.0-0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.michael-nestler:gradle-spectral:0.1.0-0")
  }
}

apply(plugin = "io.github.michael-nestler.spectral")

Using the plugins DSL:

plugins {
  id "io.github.michael-nestler.spectral" version "0.1.0-0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.michael-nestler:gradle-spectral:0.1.0-0"
  }
}

apply plugin: "io.github.michael-nestler.spectral"

Learn how to apply plugins to subprojects