io.github.frontrider.godle
Owner:
András Gábor Kis
Plugin to manage small tasks around plugins, like addons and the godot binary itself.
https://github.com/Frontrider/Godle
Sources: https://github.com/Frontrider/Godle
Version 0.24.0 (latest)
Created 31 December 2024.
Plugin to manage small tasks around godot, like addons and the godot binary itself.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.frontrider.godle") version "0.24.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.github.frontrider.godle:io.github.frontrider.godle.gradle.plugin:0.24.0") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.frontrider.godle") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.frontrider.godle:io.github.frontrider.godle.gradle.plugin:0.24.0") } } apply(plugin = "io.github.frontrider.godle")
- Applying plugins to all subprojects .