mirror of
https://github.com/InsanusMokrassar/PlaguPoster.git
synced 2024-11-08 17:23:47 +00:00
22 lines
445 B
Groovy
22 lines
445 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")
|
|
}
|
|
}
|
|
jvmMain {
|
|
dependencies {
|
|
api libs.plagubot.plugins.inline.queries
|
|
}
|
|
}
|
|
}
|
|
}
|