com.utopia-rise.godot-kotlin-jvm
Owner: Pierre-Thomas Meisels
Automatically setup of godot kotlin jvm specific project configurations
https://github.com/utopia-rise/godot-kotlin-jvm
Sources: https://github.com/utopia-rise/godot-kotlin-jvm.git
Version 0.9.1-4.2.2
Created 07 May 2024.
Automatically setup of godot kotlin jvm specific project configurations
Add this plugin to your build using the plugins DSL:
plugins {
id("com.utopia-rise.godot-kotlin-jvm") version "0.9.1-4.2.2"
}
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("com.utopia-rise.godot-kotlin-jvm:com.utopia-rise.godot-kotlin-jvm.gradle.plugin:0.9.1-4.2.2") }
It can then be applied in the precompiled script plugin:plugins { id("com.utopia-rise.godot-kotlin-jvm") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.utopia-rise.godot-kotlin-jvm:com.utopia-rise.godot-kotlin-jvm.gradle.plugin:0.9.1-4.2.2") } } apply(plugin = "com.utopia-rise.godot-kotlin-jvm")
- Applying plugins to all subprojects .