io.spine.proto-data
Owner: Spine Event Engine
Prepares a Gradle project for development on Spine.
Sources: https://github.com/SpineEventEngine/ProtoData.git
Version 0.1.8 (latest)
Created 28 January 2022.
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.1.8"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.spine.proto-data:io.spine.proto-data.gradle.plugin:0.1.8") }
It can then be applied in the precompiled script plugin:plugins { id("io.spine.proto-data") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.spine.proto-data:io.spine.proto-data.gradle.plugin:0.1.8") } } apply(plugin = "io.spine.proto-data")
- Applying plugins to all subprojects .