Search Gradle plugins

Version 0.0.23

0.0.23

Created 09 July 2021.

Sets up the ProtoData tool to be used in your project.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.spine.proto-data") version "0.0.23"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.spine:proto-data:0.0.23")
      }
    }
    
    apply(plugin = "io.spine.proto-data")
  • Applying plugins to all subprojects .