mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2025-09-07 00:59:26 +00:00
43 lines
908 B
Groovy
43 lines
908 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
id "com.google.devtools.ksp"
|
|
}
|
|
|
|
apply from: "$mppJvmJsLinuxMingwProject"
|
|
|
|
kotlin {
|
|
jvm {
|
|
binaries {
|
|
executable {
|
|
mainClass.set("dev.inmo.micro_utils.startup.launcher.MainKt")
|
|
}
|
|
}
|
|
}
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api internalProject("micro_utils.startup.plugin")
|
|
api internalProject("micro_utils.koin")
|
|
}
|
|
}
|
|
commonTest {
|
|
dependencies {
|
|
implementation libs.kt.coroutines.test
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
dependencies {
|
|
add("kspCommonMainMetadata", project(":micro_utils.koin.generator"))
|
|
}
|
|
|
|
ksp {
|
|
}
|