mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-01 05:53:50 +00:00
41 lines
851 B
Groovy
41 lines
851 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
id "application"
|
|
id "com.google.devtools.ksp"
|
|
}
|
|
|
|
apply from: "$mppJvmJsLinuxMingwProject"
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api internalProject("micro_utils.startup.plugin")
|
|
api internalProject("micro_utils.koin")
|
|
}
|
|
}
|
|
commonTest {
|
|
dependencies {
|
|
implementation libs.kt.coroutines.test
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
application {
|
|
mainClassName = "dev.inmo.micro_utils.startup.launcher.MainKt"
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
dependencies {
|
|
add("kspCommonMainMetadata", project(":micro_utils.koin.generator"))
|
|
}
|
|
|
|
ksp {
|
|
}
|