io.spine.tools.gradle.bootstrap
Owner: Spine Event Engine
Prepares a Gradle project for development on Spine.
Sources: https://github.com/SpineEventEngine/bootstrap.git
Version 1.9.0 (latest)
Created 20 May 2023.
Prepares a Gradle project for development on Spine.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.spine.tools.gradle.bootstrap") version "1.9.0"
}
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.tools.gradle.bootstrap:io.spine.tools.gradle.bootstrap.gradle.plugin:1.9.0") }
It can then be applied in the precompiled script plugin:plugins { id("io.spine.tools.gradle.bootstrap") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.spine.tools.gradle.bootstrap:io.spine.tools.gradle.bootstrap.gradle.plugin:1.9.0") } } apply(plugin = "io.spine.tools.gradle.bootstrap")
- Applying plugins to all subprojects .