Search Gradle plugins

io.spine.prototap

Obtains generated code and related data from Protobuf compiler

https://spine.io

Sources: https://github.com/SpineEventEngine/ProtoTap

Version 0.8.7 (latest)

0.8.7

Created 01 June 2024.

Obtains generated code and related data from Protobuf compiler.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "io.spine.prototap"

Learn how to apply plugins to subprojects