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.0.32
Created 18 August 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.32"
}
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.0.32") }
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.0.32") } } apply(plugin = "io.spine.proto-data")
- Applying plugins to all subprojects .