io.github.klahap.coam
Owner: Klaus Happacher
The OpenAPI Spec Merger Checker (coam) is a Gradle plugin that verifies whether all paths of one OpenAPI specification file are fully included, through $ref, in another OpenAPI specification file.
https://github.com/klahap/coam
Sources: https://github.com/klahap/coam.git
Version 1.0.0 (latest)
1.0.0
Created 09 August 2024.
The OpenAPI Spec Merger Checker (coam) is a Gradle plugin that verifies whether all paths of one OpenAPI specification file are fully included, through $ref, in another OpenAPI specification file.
Using the plugins DSL:
plugins {
id("io.github.klahap.coam") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.klahap.coam:coam:1.0.0")
}
}
apply(plugin = "io.github.klahap.coam")
Using the plugins DSL:
plugins {
id "io.github.klahap.coam" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.klahap.coam:coam:1.0.0"
}
}
apply plugin: "io.github.klahap.coam"