-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsettings.gradle.kts
72 lines (56 loc) · 2.35 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
rootProject.name = "ok-202206-marketplace"
pluginManagement {
plugins {
val kotlinVersion: String by settings
val kotestVersion: String by settings
val openapiVersion: String by settings
val springframeworkBootVersion: String by settings
val springDependencyManagementVersion: String by settings
val pluginJpa: String by settings
val bmuschkoVersion: String by settings
kotlin("jvm") version kotlinVersion apply false
kotlin("multiplatform") version kotlinVersion apply false
id("io.kotest.multiplatform") version kotestVersion apply false
kotlin("plugin.serialization") version kotlinVersion apply false
id("org.springframework.boot") version springframeworkBootVersion apply false
id("io.spring.dependency-management") version springDependencyManagementVersion apply false
kotlin("plugin.spring") version kotlinVersion apply false
kotlin("plugin.jpa") version pluginJpa apply false
id("org.openapi.generator") version openapiVersion apply false
id("com.bmuschko.docker-java-application") version bmuschkoVersion apply false
id("com.bmuschko.docker-remote-api") version bmuschkoVersion apply false
}
}
//include("m1l1-hello-world")
//include("m1l3-oop")
//include("m1l4-dsl")
//include("m1l5-coroutines")
//include("m1l6-flows-and-channels")
//include("m1l7-kmp")
//include("m2l2-testing")
//include("m3l1-spring")
include("ok-marketplace-common")
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-stubs")
include ("ok-marketplace-app-spring")
include("ok-marketplace-app-ktor")
include("ok-marketplace-app-serverless")
include("ok-marketplace-app-kafka")
include("ok-marketplace-app-rabbit")
include("ok-marketplace-biz")
include("ok-marketplace-lib-validation")
include("ok-marketplace-lib-cor")
include("ok-marketplace-lib-konform")
include("ok-marketplace-repo-inmemory")
include("ok-marketplace-repo-stubs")
include("ok-marketplace-repo-tests")
include("ok-marketplace-repo-postgresql")
include("ok-marketplace-repo-cassandra")
include("ok-marketplace-repo-gremlin")
include("ok-marketplace-auth")
include("ok-marketplace-logging")
include("ok-marketplace-api-logs")
include("ok-marketplace-logs-mapper")