Search Gradle plugins

com.mikepenz.kotlinx.binary-compatibility-validator

Produces binary API dumps and compares them in order to verify that binary API is preserved. Forked plugin with regex filter support.

https://github.com/mikepenz/binary-compatibility-validator

Sources: https://github.com/mikepenz/binary-compatibility-validator

Version 0.16.3 (latest)

0.16.3

Created 22 August 2024.

Produces binary API dumps and compares them in order to verify that binary API is preserved. Forked plugin with regex filter support.

Using the plugins DSL:

plugins {
  id("com.mikepenz.kotlinx.binary-compatibility-validator") version "0.16.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.mikepenz.kotlinx:binary-compatibility-validator:0.16.3")
  }
}

apply(plugin = "com.mikepenz.kotlinx.binary-compatibility-validator")

Using the plugins DSL:

plugins {
  id "com.mikepenz.kotlinx.binary-compatibility-validator" version "0.16.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.mikepenz.kotlinx:binary-compatibility-validator:0.16.3"
  }
}

apply plugin: "com.mikepenz.kotlinx.binary-compatibility-validator"

Learn how to apply plugins to subprojects