mirror of
https://github.com/stan220/gkj-binding-leak-poc.git
synced 2026-09-08 15:28:56 +00:00
25 lines
443 B
Kotlin
25 lines
443 B
Kotlin
import godot.gradle.GodotLanguage
|
|
|
|
plugins {
|
|
id("com.utopia-rise.godot-kotlin-jvm") version "0.16.2-4.6.3"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
}
|
|
|
|
godot {
|
|
languages.set(setOf(GodotLanguage.KOTLIN))
|
|
javaVersion.set(17)
|
|
godotProjectDirectory.set(file("."))
|
|
registrationFilesDirectory.set(file("gdj"))
|
|
}
|
|
|
|
tasks.named<Wrapper>("wrapper") {
|
|
jarFile = file("bin/gradle/gradle-wrapper.jar")
|
|
}
|