com.github.raniejade.godot-kotlin
拥有者: Ranie Jade Ramiso
Godot-kotlin的插件(Godot的Kotlin Native绑定)。
https://github.com/raniejade/godot-kotlin
源代码: https://github.com/raniejade/godot-kotlin.git
使用插件的DSL
plugins {
id("com.github.raniejade.godot-kotlin") version "32.1.0"
}
使用旧的插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.raniejade:godot-kotlin-gradle-plugin:32.1.0")
}
}
apply(plugin = "com.github.raniejade.godot-kotlin")
使用插件的DSL
plugins {
id "com.github.raniejade.godot-kotlin" version "32.1.0"
}
使用旧的插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.raniejade:godot-kotlin-gradle-plugin:32.1.0"
}
}
apply plugin: "com.github.raniejade.godot-kotlin"