com.mikepenz.kotlinx.binary-compatibility-validator
Owner: Mike Penz
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)
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.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.mikepenz.kotlinx.binary-compatibility-validator") version "0.16.3"
}
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.mikepenz.kotlinx.binary-compatibility-validator:com.mikepenz.kotlinx.binary-compatibility-validator.gradle.plugin:0.16.3") }
It can then be applied in the precompiled script plugin:plugins { id("com.mikepenz.kotlinx.binary-compatibility-validator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.mikepenz.kotlinx.binary-compatibility-validator:com.mikepenz.kotlinx.binary-compatibility-validator.gradle.plugin:0.16.3") } } apply(plugin = "com.mikepenz.kotlinx.binary-compatibility-validator")
- Applying plugins to all subprojects .