Search Gradle plugins

Version 0.0.18

Created 09 June 2021.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.spine:proto-data:0.0.18")
  }
}

apply(plugin = "io.spine.proto-data")

Using the plugins DSL:

plugins {
  id "io.spine.proto-data" version "0.0.18"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.spine:proto-data:0.0.18"
  }
}

apply plugin: "io.spine.proto-data"

Learn how to apply plugins to subprojects