add publicators submodule

This commit is contained in:
2022-03-11 21:09:50 +06:00
parent f683809f29
commit 559545438a
8 changed files with 54 additions and 0 deletions
publicators/template
client
build.gradle
src
commonMain
kotlin
dev
inmo
postssystem
publicators
template
client
main
common
build.gradle
src
commonMain
kotlin
dev
inmo
postssystem
publicators
template
common
main
server
build.gradle
src
jvmMain
kotlin
dev
inmo
postssystem
publicators
template
server

@ -0,0 +1,18 @@
plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
id "com.android.library"
}
apply from: "$mppProjectWithSerializationPresetPath"
kotlin {
sourceSets {
commonMain {
dependencies {
api project(":postssystem.publicators.template.common")
api project(":postssystem.features.common.client")
}
}
}
}

@ -0,0 +1 @@
<manifest package="dev.inmo.postssystem.publicators.template.client"/>

@ -0,0 +1,17 @@
plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
id "com.android.library"
}
apply from: "$mppProjectWithSerializationPresetPath"
kotlin {
sourceSets {
commonMain {
dependencies {
api project(":postssystem.features.common.common")
}
}
}
}

@ -0,0 +1 @@
<manifest package="dev.inmo.postssystem.publicators.template.common"/>

@ -0,0 +1,17 @@
plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
}
apply from: "$mppJavaProjectPresetPath"
kotlin {
sourceSets {
commonMain {
dependencies {
api project(":postssystem.publicators.template.common")
api project(":postssystem.features.common.server")
}
}
}
}