mirror of
https://github.com/InsanusMokrassar/PlaguPoster.git
synced 2024-11-17 13:33:47 +00:00
25 lines
540 B
Groovy
25 lines
540 B
Groovy
|
plugins {
|
||
|
id "org.jetbrains.kotlin.multiplatform"
|
||
|
id "org.jetbrains.kotlin.plugin.serialization"
|
||
|
id "com.android.library"
|
||
|
}
|
||
|
|
||
|
apply from: "$mppProjectWithSerializationPresetPath"
|
||
|
|
||
|
kotlin {
|
||
|
sourceSets {
|
||
|
commonMain {
|
||
|
dependencies {
|
||
|
api libs.tgbotapi
|
||
|
api libs.microutils.repos.common
|
||
|
}
|
||
|
}
|
||
|
jvmMain {
|
||
|
dependencies {
|
||
|
api libs.microutils.repos.exposed
|
||
|
api libs.plagubot.plugin
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|