18 lines
404 B
Groovy
18 lines
404 B
Groovy
|
plugins {
|
||
|
id "org.jetbrains.kotlin.multiplatform"
|
||
|
id "org.jetbrains.kotlin.plugin.serialization"
|
||
|
}
|
||
|
|
||
|
apply from: "$mppJavaProjectPresetPath"
|
||
|
|
||
|
kotlin {
|
||
|
sourceSets {
|
||
|
commonMain {
|
||
|
dependencies {
|
||
|
api project(":postssystem.targets.telegram.content.polls.common")
|
||
|
api project(":postssystem.features.common.server")
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|