mirror of
https://github.com/InsanusMokrassar/PlaguPoster.git
synced 2024-11-09 01:33:47 +00:00
25 lines
569 B
Groovy
25 lines
569 B
Groovy
|
plugins {
|
||
|
id "org.jetbrains.kotlin.multiplatform"
|
||
|
id "org.jetbrains.kotlin.plugin.serialization"
|
||
|
}
|
||
|
|
||
|
apply from: "$mppProjectWithSerializationPresetPath"
|
||
|
|
||
|
kotlin {
|
||
|
sourceSets {
|
||
|
commonMain {
|
||
|
dependencies {
|
||
|
api project(":plaguposter.common")
|
||
|
api project(":plaguposter.posts")
|
||
|
api libs.microutils.koin
|
||
|
api libs.krontab
|
||
|
}
|
||
|
}
|
||
|
jvmMain {
|
||
|
dependencies {
|
||
|
api libs.plagubot.plugins.inline.queries
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|