io.github.stefankoppier.oasdiff
Owner: Stefan Koppier
Wrapper for the Tufin oasdiff OpenAPI breaking changes detection tool.
https://github.com/stefankoppier/oasdiff-gradle
Sources: https://github.com/stefankoppier/oasdiff-gradle
Version 0.0.3 (latest)
0.0.3
Created 04 June 2023.
Wrapper for the Tufin oasdiff OpenAPI breaking changes detection tool.
Using the plugins DSL:
plugins {
id("io.github.stefankoppier.oasdiff") version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.stefankoppier:plugin:0.0.3")
}
}
apply(plugin = "io.github.stefankoppier.oasdiff")
Using the plugins DSL:
plugins {
id "io.github.stefankoppier.oasdiff" version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.stefankoppier:plugin:0.0.3"
}
}
apply plugin: "io.github.stefankoppier.oasdiff"