From 3d98dbc7f8376b04cfa8d3b5803618c244f31de9 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Sat, 8 Jan 2022 18:17:34 +0600 Subject: [PATCH] add services term --- services/template/client/build.gradle | 18 ++++++++++++++++++ .../services/template/client/.gitkeep | 0 .../client/src/main/AndroidManifest.xml | 1 + services/template/common/build.gradle | 17 +++++++++++++++++ .../services/template/common/.gitkeep | 0 .../common/src/main/AndroidManifest.xml | 1 + services/template/server/build.gradle | 17 +++++++++++++++++ .../services/template/server/.gitkeep | 0 8 files changed, 54 insertions(+) create mode 100644 services/template/client/build.gradle create mode 100644 services/template/client/src/commonMain/kotlin/dev/inmo/postssystem/services/template/client/.gitkeep create mode 100644 services/template/client/src/main/AndroidManifest.xml create mode 100644 services/template/common/build.gradle create mode 100644 services/template/common/src/commonMain/kotlin/dev/inmo/postssystem/services/template/common/.gitkeep create mode 100644 services/template/common/src/main/AndroidManifest.xml create mode 100644 services/template/server/build.gradle create mode 100644 services/template/server/src/jvmMain/kotlin/dev/inmo/postssystem/services/template/server/.gitkeep diff --git a/services/template/client/build.gradle b/services/template/client/build.gradle new file mode 100644 index 00000000..e4a6a26a --- /dev/null +++ b/services/template/client/build.gradle @@ -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") + } + } + } +} diff --git a/services/template/client/src/commonMain/kotlin/dev/inmo/postssystem/services/template/client/.gitkeep b/services/template/client/src/commonMain/kotlin/dev/inmo/postssystem/services/template/client/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/services/template/client/src/main/AndroidManifest.xml b/services/template/client/src/main/AndroidManifest.xml new file mode 100644 index 00000000..a67a82ce --- /dev/null +++ b/services/template/client/src/main/AndroidManifest.xml @@ -0,0 +1 @@ + diff --git a/services/template/common/build.gradle b/services/template/common/build.gradle new file mode 100644 index 00000000..d31732ab --- /dev/null +++ b/services/template/common/build.gradle @@ -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") + } + } + } +} diff --git a/services/template/common/src/commonMain/kotlin/dev/inmo/postssystem/services/template/common/.gitkeep b/services/template/common/src/commonMain/kotlin/dev/inmo/postssystem/services/template/common/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/services/template/common/src/main/AndroidManifest.xml b/services/template/common/src/main/AndroidManifest.xml new file mode 100644 index 00000000..9992718f --- /dev/null +++ b/services/template/common/src/main/AndroidManifest.xml @@ -0,0 +1 @@ + diff --git a/services/template/server/build.gradle b/services/template/server/build.gradle new file mode 100644 index 00000000..cd649089 --- /dev/null +++ b/services/template/server/build.gradle @@ -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") + } + } + } +} diff --git a/services/template/server/src/jvmMain/kotlin/dev/inmo/postssystem/services/template/server/.gitkeep b/services/template/server/src/jvmMain/kotlin/dev/inmo/postssystem/services/template/server/.gitkeep new file mode 100644 index 00000000..e69de29b