godot-kotlin-project-template/settings.gradle.kts

15 lines
382 B
Text
Raw Normal View History

2024-04-19 14:46:19 -06:00
rootProject.name = "godot-kotlin-template"
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
google()
}
resolutionStrategy.eachPlugin {
if (requested.id.id == "com.utopia-rise.godot-kotlin-jvm") {
useModule("com.utopia-rise:godot-gradle-plugin:${requested.version}")
}
}
}