Search Gradle plugins

com.gitlab.protobuf-tools.proto-publish

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)

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"

Learn how to apply plugins to subprojects