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