Search Gradle plugins

Version 0.8.3 (latest)

Created 03 May 2024.

Obtains generated code and related data from Protobuf compiler

Using the plugins DSL:

plugins {
  id("io.spine.prototap") version "0.8.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.spine.tools:prototap-gradle-plugin:0.8.3")
  }
}

apply(plugin = "io.spine.prototap")

Using the plugins DSL:

plugins {
  id "io.spine.prototap" version "0.8.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.spine.tools:prototap-gradle-plugin:0.8.3"
  }
}

apply plugin: "io.spine.prototap"

Learn how to apply plugins to subprojects