mirror of
https://github.com/littlektframework/littlekt-game-template.git
synced 2025-02-04 14:40:15 -07:00
update to littlekt 0.8.0
This commit is contained in:
parent
f80b56aae5
commit
9c91061bcf
3 changed files with 11 additions and 6 deletions
|
@ -2,6 +2,7 @@ import org.jetbrains.kotlin.gradle.plugin.KotlinJsCompilerType
|
||||||
import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformType
|
import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformType
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
maven(url = "https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven")
|
maven(url = "https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,7 +12,7 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
android()
|
androidTarget()
|
||||||
jvm {
|
jvm {
|
||||||
compilations {
|
compilations {
|
||||||
val main by getting
|
val main by getting
|
||||||
|
@ -110,6 +111,10 @@ android {
|
||||||
minSdk = (findProperty("android.minSdk") as String).toInt()
|
minSdk = (findProperty("android.minSdk") as String).toInt()
|
||||||
targetSdk = (findProperty("android.targetSdk") as String).toInt()
|
targetSdk = (findProperty("android.targetSdk") as String).toInt()
|
||||||
}
|
}
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_11
|
||||||
|
targetCompatibility = JavaVersion.VERSION_11
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
rootProject.extensions.configure<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension> {
|
rootProject.extensions.configure<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension> {
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
[versions]
|
[versions]
|
||||||
plugin-android = "7.2.2"
|
plugin-android = "7.3.1"
|
||||||
plugin-kotlin = "1.8.10"
|
plugin-kotlin = "1.8.10"
|
||||||
|
|
||||||
kotlinx-html = "0.7.2"
|
kotlinx-html = "0.9.1"
|
||||||
kotlinx-coroutines = "1.6.4"
|
kotlinx-coroutines = "1.7.3"
|
||||||
|
|
||||||
littlekt = "0.6.3"
|
littlekt = "0.8.0"
|
||||||
|
|
||||||
[libraries]
|
[libraries]
|
||||||
plugin-android = { module = "com.android.tools.build:gradle", version.ref = "plugin-android" }
|
plugin-android = { module = "com.android.tools.build:gradle", version.ref = "plugin-android" }
|
||||||
|
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,5 +1,5 @@
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|
Loading…
Reference in a new issue