Files
gkj-binding-leak-poc/build.gradle.kts
T

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")
}