io.spine.protodata
Owner: Spine Event Engine
Sets up the ProtoData tool to be used in your project.
Sources: https://github.com/SpineEventEngine/ProtoData.git
Version 0.14.2
0.14.2
Created 03 November 2023.
Sets up the ProtoData tool to be used in your project.
Using the plugins DSL:
plugins {
id("io.spine.protodata") version "0.14.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.spine:protodata:0.14.2")
}
}
apply(plugin = "io.spine.protodata")
Using the plugins DSL:
plugins {
id "io.spine.protodata" version "0.14.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.spine:protodata:0.14.2"
}
}
apply plugin: "io.spine.protodata"