Gradle Kotlin DSL (#2634)

* Ease migration to Gradle Kotlin DSL by changing quotes, function calls and plugin definitions

* Migrate build scripts to Gradle Kotlin DSL
This commit is contained in:
Daniel Bälz
2020-05-18 23:14:01 +02:00
committed by GitHub
parent c9e63b3e00
commit 47d7e8ef09
17 changed files with 587 additions and 527 deletions

View File

@ -0,0 +1,13 @@
package com.unciv.build
object BuildConfig {
const val kotlinVersion = "1.3.71"
const val appName = "Unciv"
const val appCodeNumber = 428
const val appVersion = "3.8.9"
const val gdxVersion = "1.9.10"
const val roboVMVersion = "2.3.1"
const val ashleyVersion = "1.7.0"
const val aiVersion = "1.8.0"
}