mirror of
https://github.com/utopia-rise/godot-kotlin-project-template.git
synced 2025-03-14 11:20:30 -06:00
15 lines
No EOL
382 B
Kotlin
15 lines
No EOL
382 B
Kotlin
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}")
|
|
}
|
|
}
|
|
} |