MicroUtils/startup/launcher/build.gradle

32 lines
674 B
Groovy
Raw Normal View History

2022-12-05 15:19:38 +00:00
plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
id "application"
2022-12-05 15:19:38 +00:00
}
2023-04-18 13:19:38 +00:00
apply from: "$mppJvmJsLinuxMingwProjectPresetPath"
2022-12-05 15:19:38 +00:00
kotlin {
sourceSets {
commonMain {
dependencies {
api internalProject("micro_utils.startup.plugin")
}
}
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
}
}
application {
2022-12-07 13:40:30 +00:00
mainClassName = "dev.inmo.micro_utils.startup.launcher.MainKt"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}