-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsettings.gradle.kts
61 lines (45 loc) · 1.46 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
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
}
}
rootProject.name = "kotlin-workshop"
include("kotlin-basic")
include("kotlin-coroutines")
include("kotlin-futures")
// include("kotlin-dagger-example")
// include("kotlin-koin-example")
// include("grpc:kroto-plus-example")
include("jasync:jasync-mysql-example")
include("jackson:dataformats-binary")
include("jackson:dataformats-text")
include("jackson:module-examples")
include("rsocket:rsocket-communication:api")
include("rsocket:rsocket-communication:client")
include("rsocket:rsocket-communication:server")
include("spring-boot:basic")
include("spring-boot:cache2k")
include("spring-boot:cache2k-jcache")
include("spring-boot:lettuce-cache")
include("spring-boot:webflux")
include("spring-boot:webmvc")
include("spring-boot:route")
include("spring-boot:resilience4j")
include("spring-boot:redisson")
//include("spring-data:jdbc")
// include("spring-data:jooq")
include("spring-data:jpa")
include("spring-data:multi-store")
include("spring-data:redis")
include("spring-data:redis-reactive")
//include("eventsourcing:javers-kotlin")
//include("eventsourcing:javers-example")
//include("eventsourcing:javers-mongodb-example")
//include("eventsourcing:javers-testing")
include("messaging:kafka-clients-examples")
include("messaging:kafka-streams-examples")
include("text:ahocorasick-kotlin")
include("text:flashtext-kotlin")
include("utils:kotlin-uuid")
include("kotlin-tests")