com.gitlab.protobuf-tools.proto-publish
Owner: Barak Silbert
Manage protobuf schemas - publish protobuf schemas to a maven repository, perform linting and backward compatibility verification before publishing and generate documentation.
https://gitlab.com/protobuf-tools/proto-publish
Sources: https://gitlab.com/protobuf-tools/proto-publish.git
Version 1.0.0 (latest)
1.0.0
Created 18 August 2021.
Manage protobuf schemas - publish protobuf schemas to a maven repository, perform linting and backward compatibility verification before publishing and generate documentation.
Using the plugins DSL:
plugins {
id("com.gitlab.protobuf-tools.proto-publish") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.gitlab.protobuf-tools:proto-publish:1.0.0")
}
}
apply(plugin = "com.gitlab.protobuf-tools.proto-publish")
Using the plugins DSL:
plugins {
id "com.gitlab.protobuf-tools.proto-publish" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gitlab.protobuf-tools:proto-publish:1.0.0"
}
}
apply plugin: "com.gitlab.protobuf-tools.proto-publish"