com.arc-e-tect.mirage-api-detector
Owner:
Iwan Eising
Scans the OpenAPI documentation and reports every operation with no matching Spring Boot @RestController implementation.
https://github.com/Arc-E-Tect/SoftwareEngineeringDoneRight-Gradle/tree/main/mirage-api-detector
Sources: https://github.com/Arc-E-Tect/SoftwareEngineeringDoneRight-Gradle.git
Version 0.0.2 (latest)
Created 11 August 2026.
Scans the OpenAPI documentation and reports every operation with no matching Spring Boot @RestController implementation.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.arc-e-tect.mirage-api-detector") version "0.0.2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.arc-e-tect.mirage-api-detector:com.arc-e-tect.mirage-api-detector.gradle.plugin:0.0.2") }It can then be applied in the precompiled script plugin:plugins { id("com.arc-e-tect.mirage-api-detector") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.arc-e-tect.mirage-api-detector:com.arc-e-tect.mirage-api-detector.gradle.plugin:0.0.2") } } apply(plugin = "com.arc-e-tect.mirage-api-detector") - Applying plugins to all subprojects .