Introduced a versioning task in a new `version.gradle.kts` file to auto-generate version properties. The main server setup in `Main.kt` was refactored to streamline server initialization using `UndertowServer`. Dependencies and configurations in `build.gradle.kts` were updated to deploy effectively, including improved yarn lock handling and symbolic link integration.
13 lines
244 B
Kotlin
13 lines
244 B
Kotlin
import jdk.tools.jlink.resources.plugins
|
|
|
|
pluginManagement {
|
|
plugins {
|
|
kotlin("multiplatform") version "2.0.21"
|
|
}
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
maven { setUrl("https://plugins.gradle.org/m2/") }
|
|
}
|
|
}
|