PlaguPoster/triggers/timer/build.gradle

19 lines
425 B
Groovy
Raw Normal View History

2022-12-13 06:32:18 +00:00
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")
2022-12-14 05:50:02 +00:00
api project(":plaguposter.posts.panel")
2022-12-13 06:32:18 +00:00
}
}
}
}