mirror of
https://github.com/utopia-rise/godot-kotlin-project-template.git
synced 2025-01-10 15:00:53 -07:00
15 lines
No EOL
382 B
Text
15 lines
No EOL
382 B
Text
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}")
|
|
}
|
|
}
|
|
} |