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.0.5

Created 28 April 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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.adamko.kotlin.binary_compatibility_validator:bcv-gradle-plugin:0.0.5")
  }
}

apply(plugin = "dev.adamko.kotlin.binary-compatibility-validator.project")

Using the plugins DSL:

plugins {
  id "dev.adamko.kotlin.binary-compatibility-validator.project" version "0.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.adamko.kotlin.binary_compatibility_validator:bcv-gradle-plugin:0.0.5"
  }
}

apply plugin: "dev.adamko.kotlin.binary-compatibility-validator.project"

Learn how to apply plugins to subprojects