mirror of
https://github.com/yairm210/Unciv.git
synced 2025-09-21 10:25:10 -04:00

* move dependency versions to `gradle.properties` * remove unnecessary braces from ktor dependencies * Update BuildConfig.kt
18 lines
365 B
Plaintext
18 lines
365 B
Plaintext
import org.jetbrains.kotlin.konan.properties.loadProperties
|
|
|
|
val gdxVersion: String by loadProperties("${projectDir.parent}/gradle.properties")
|
|
|
|
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.badlogicgames.gdx:gdx-tools:$gdxVersion") {
|
|
exclude("com.badlogicgames.gdx", "gdx-backend-lwjgl")
|
|
}
|
|
}
|