-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsettings.gradle.kts
58 lines (51 loc) · 2.11 KB
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
rootProject.name = "ok-202202-marketplace"
pluginManagement {
plugins {
val kotlinVersion: String by settings
val kotestVersion: String by settings
val openapiVersion: String by settings
val bmuschkoVersion: String by settings
kotlin("jvm") version kotlinVersion apply false
kotlin("multiplatfrom") version kotlinVersion apply false
id("io.kotest.multiplatform") version kotestVersion apply false
kotlin("plugin.serialization") version kotlinVersion apply false
id("com.bmuschko.docker-java-application") version bmuschkoVersion apply false
id("com.bmuschko.docker-remote-api") version bmuschkoVersion apply false
id("org.openapi.generator") version openapiVersion apply false
// spring
val springBootVersion: String by settings
val springDependencyVersion: String by settings
val springPluginVersion: String by settings
id("org.springframework.boot") version springBootVersion
id("io.spring.dependency-management") version springDependencyVersion
kotlin("plugin.spring") version springPluginVersion
}
}
// include("m1l1-hello-world")
// include("m1l4-dsl")
// include("m1l5-coroutines")
// include("m1l7-multiplatform")
// include("m2l2-testing")
include("ok-marketplace-api-v1-jackson")
include("ok-marketplace-api-v2-kmp")
include("ok-marketplace-mappers-v1")
include("ok-marketplace-mappers-v2")
include("ok-marketplace-common")
include("ok-marketplace-stubs")
include("ok-marketplace-biz")
include("ok-marketplace-services")
include("ok-marketplace-repo-inmemory")
include("ok-marketplace-repo-stub")
include("ok-marketplace-repo-test")
include("ok-marketplace-repo-gremlin")
//include("ok-marketplace-repo-sql")
include("ok-marketplace-repo-cassandra")
include("ok-marketplace-app-spring")
include("ok-marketplace-app-ktor")
//include("ok-marketplace-app-ktor-native")
include("ok-marketplace-app-ktor-common")
include("ok-marketplace-app-kafka")
include("ok-marketplace-app-rabbit")
include("ok-marketplace-logging")
include("ok-marketplace-api-logs")
include("ok-marketplace-logs-mapper")