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
Using the plugins DSL:
plugins {
id("io.github.michael-nestler.spectral") version "0.0.0-6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.michael-nestler:gradle-spectral:0.0.0-6")
}
}
apply(plugin = "io.github.michael-nestler.spectral")
Using the plugins DSL:
plugins {
id "io.github.michael-nestler.spectral" version "0.0.0-6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.michael-nestler:gradle-spectral:0.0.0-6"
}
}
apply plugin: "io.github.michael-nestler.spectral"