Search Gradle plugins

dev.adamko.kotlin.binary-compatibility-validator.project

Owner: Adam

Validates the public JVM binary API to make sure breaking changes are tracked. This is a Gradle Project plugin and can be applied in a `build.gradle` or `build.gradle.kts` file.

https://github.com/adamko-dev/kotlin-binary-compatibility-validator-mu

Sources: https://github.com/adamko-dev/kotlin-binary-compatibility-validator-mu

Version 0.1.0 (latest)

0.1.0

Created 02 May 2023.

Validates the public JVM binary API to make sure breaking changes are tracked. This is a Gradle Project plugin and can be applied in a `build.gradle` or `build.gradle.kts` file.

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.adamko.kotlin.binary-compatibility-validator.project") version "0.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.adamko.kotlin.binary_compatibility_validator:bcv-gradle-plugin:0.1.0")
      }
    }
    
    apply(plugin = "dev.adamko.kotlin.binary-compatibility-validator.project")
  • Applying plugins to all subprojects .