2022-12-05 15:19:38 +00:00
|
|
|
plugins {
|
|
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
2022-12-06 06:38:24 +00:00
|
|
|
id "application"
|
2023-05-08 19:38:04 +00:00
|
|
|
id "com.google.devtools.ksp"
|
2022-12-05 15:19:38 +00:00
|
|
|
}
|
|
|
|
|
2024-08-27 12:57:59 +00:00
|
|
|
apply from: "$mppJvmJsLinuxMingwProject"
|
2022-12-05 15:19:38 +00:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api internalProject("micro_utils.startup.plugin")
|
2023-05-08 19:38:04 +00:00
|
|
|
api internalProject("micro_utils.koin")
|
2022-12-05 15:19:38 +00:00
|
|
|
}
|
|
|
|
}
|
2022-12-15 04:26:31 +00:00
|
|
|
commonTest {
|
2022-12-07 04:50:51 +00:00
|
|
|
dependencies {
|
|
|
|
implementation libs.kt.coroutines.test
|
|
|
|
}
|
|
|
|
}
|
2022-12-05 15:19:38 +00:00
|
|
|
}
|
|
|
|
}
|
2022-12-06 06:38:24 +00:00
|
|
|
|
|
|
|
application {
|
2022-12-07 13:40:30 +00:00
|
|
|
mainClassName = "dev.inmo.micro_utils.startup.launcher.MainKt"
|
2022-12-06 06:38:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
2023-11-02 13:00:35 +00:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
2022-12-06 06:38:24 +00:00
|
|
|
}
|
2023-05-08 19:38:04 +00:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
add("kspCommonMainMetadata", project(":micro_utils.koin.generator"))
|
|
|
|
}
|
|
|
|
|
|
|
|
ksp {
|
|
|
|
}
|