io.github.michael-nestler.spectral
Owner: Michael Nestler
Lint your OpenAPI docs with Spectral
https://github.com/michael-nestler/gradle-spectral
Sources: https://github.com/michael-nestler/gradle-spectral.git
Version 0.1.0-0 (latest)
0.1.0-0
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"