Search Gradle plugins

com.docktape.swagger-brake

A plugin to check Swagger definition files for any breaking API changes. Originally was io.redskap.swagger-brake

https://docktape.com

Sources: https://github.com/docktape/swagger-brake-gradle

Version 2.6.0 (latest)

Created 04 November 2025.

A plugin to check Swagger definition files for any breaking API changes. Originally was io.redskap.swagger-brake

Add this plugin to your build using the plugins DSL:

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