Search Gradle plugins

Scans OpenAPI documentation, @RestController implementations, and test-level verification evidence (Spring RestDocs, the Atlassian OpenAPI request validator, and Spring Cloud Contract) to report endpoints that are declared and implemented but never verified against their contract.

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

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

Version 0.0.1

Created 12 August 2026.

Scans OpenAPI documentation, @RestController implementations, and test-level verification evidence (Spring RestDocs, the Atlassian OpenAPI request validator, and Spring Cloud Contract) to report endpoints that are declared and implemented but never verified against their contract.

Gradle features compatibility:
Configuration cache

Add this plugin to your build using the plugins DSL:

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

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