littlekt-game-template/build.gradle.kts

21 lines
498 B
Text
Raw Permalink Normal View History

plugins {
alias(libs.plugins.kotlin.multiplatform) apply false
2022-03-09 14:55:07 -07:00
}
allprojects {
repositories {
mavenLocal()
2022-03-09 14:55:07 -07:00
google()
mavenCentral()
}
group = "com.game.template"
version = "1.0"
2023-02-08 07:18:56 -07:00
}
plugins.withType<org.jetbrains.kotlin.gradle.targets.js.yarn.YarnPlugin> {
the<org.jetbrains.kotlin.gradle.targets.js.yarn.YarnRootExtension>().apply {
yarnLockMismatchReport = org.jetbrains.kotlin.gradle.targets.js.yarn.YarnLockMismatchReport.WARNING
}
}