Search Gradle plugins

Scans Spring Boot @RestController classes for exposed endpoints and reports any that are not described in the OpenAPI documentation.

https://github.com/Arc-E-Tect/SoftwareEngineeringDoneRight-Gradle/tree/main/shadow-api-detector

Sources: https://github.com/Arc-E-Tect/SoftwareEngineeringDoneRight-Gradle.git

Version 0.2.0 (latest)

Created 31 July 2026.

Scans Spring Boot @RestController classes for exposed endpoints and reports any that are not described in the OpenAPI documentation.

Gradle features compatibility:
Configuration cache

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.arc-e-tect.shadow-api-detector") version "0.2.0"
}

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.shadow-api-detector:com.arc-e-tect.shadow-api-detector.gradle.plugin:0.2.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.arc-e-tect.shadow-api-detector")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.arc-e-tect.shadow-api-detector:com.arc-e-tect.shadow-api-detector.gradle.plugin:0.2.0")
      }
    }
    
    apply(plugin = "com.arc-e-tect.shadow-api-detector")
  • Applying plugins to all subprojects .