io.github.rost5000.gradle.protolock
Owner: Rostislav
This is a plugin for Protolock for managing your backward compatibility with your protobuf plugin generated by gradle.
https://github.com/rost5000/ProtolockGradlePlugin
Sources: https://github.com/rost5000/ProtolockGradlePlugin.git
Version 1.0.4 (latest)
1.0.4
Created 03 June 2024.
This is a plugin for Protolock for managing your backward compatibility with your protobuf plugin generated by gradle.
Using the plugins DSL:
plugins {
id("io.github.rost5000.gradle.protolock") version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.rost5000.gradle.protolock:plugin:1.0.4")
}
}
apply(plugin = "io.github.rost5000.gradle.protolock")
Using the plugins DSL:
plugins {
id "io.github.rost5000.gradle.protolock" version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.rost5000.gradle.protolock:plugin:1.0.4"
}
}
apply plugin: "io.github.rost5000.gradle.protolock"