com.github.raniejade.godot-kotlin
Owner: Ranie Jade Ramiso
A plugin for godot-kotlin (Kotlin Native binding for Godot).
https://github.com/raniejade/godot-kotlin
Sources: https://github.com/raniejade/godot-kotlin.git
Version 32.1.0 (latest)
32.1.0
Created 15 February 2020.
A plugin for godot-kotlin (Kotlin Native binding for Godot).
Using the plugins DSL:
plugins {
id("com.github.raniejade.godot-kotlin") version "32.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.raniejade:godot-kotlin-gradle-plugin:32.1.0")
}
}
apply(plugin = "com.github.raniejade.godot-kotlin")
Using the plugins DSL:
plugins {
id "com.github.raniejade.godot-kotlin" version "32.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.raniejade:godot-kotlin-gradle-plugin:32.1.0"
}
}
apply plugin: "com.github.raniejade.godot-kotlin"