add services term

This commit is contained in:
InsanusMokrassar 2022-01-08 18:17:34 +06:00
parent c3326157da
commit 3d98dbc7f8
8 changed files with 54 additions and 0 deletions
services/template
client
build.gradle
src
commonMain/kotlin/dev/inmo/postssystem/services/template/client
main
common
build.gradle
src
commonMain/kotlin/dev/inmo/postssystem/services/template/common
main
server
build.gradle
src/jvmMain/kotlin/dev/inmo/postssystem/services/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.services.template.common")
api project(":postssystem.services.common.client")
}
}
}
}

@ -0,0 +1 @@
<manifest package="dev.inmo.postssystem.services.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.services.common.common")
}
}
}
}

@ -0,0 +1 @@
<manifest package="dev.inmo.postssystem.services.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.services.template.common")
api project(":postssystem.services.common.server")
}
}
}
}