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.
Using the plugins DSL:
plugins {
id("dev.adamko.kotlin.binary-compatibility-validator.project") version "0.1.0"
}
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.1.0")
}
}
apply(plugin = "dev.adamko.kotlin.binary-compatibility-validator.project")
Using the plugins DSL:
plugins {
id "dev.adamko.kotlin.binary-compatibility-validator.project" version "0.1.0"
}
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.1.0"
}
}
apply plugin: "dev.adamko.kotlin.binary-compatibility-validator.project"