-
Notifications
You must be signed in to change notification settings - Fork 103
/
settings.gradle
129 lines (88 loc) · 3.93 KB
/
settings.gradle
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
pluginManagement {
plugins {
id 'io.spring.dependency-management' version "1.1.6"
id 'org.springframework.boot' version "3.3.3"
['jvm', 'plugin.spring', 'plugin.jpa'].forEach(postfix -> {
id "org.jetbrains.kotlin.${postfix}" version "1.8.0"
})
}
}
rootProject.name = 'spring-boot-sample'
include 'SpringBootAOP'
findProject(':SpringBootAOP')?.name = 'spring-boot-aop'
include 'SpringBootAsync'
findProject(':SpringBootAsync')?.name = 'spring-boot-async'
include 'SpringBootBatch'
findProject(':SpringBootBatch')?.name = 'spring-boot-batch'
include 'SpringBootCache'
findProject(':SpringBootCache')?.name = 'spring-boot-cache'
include 'SpringBootCors'
findProject(':SpringBootCors')?.name = 'spring-boot-cors'
include 'SpringBootCustomJackson'
findProject(':SpringBootCustomJackson')?.name = 'spring-boot-custom-jackson'
include 'SpringBootDocker'
findProject(':SpringBootDocker')?.name = 'spring-boot-docker'
include 'SpringBootDynamo'
findProject(':SpringBootDynamo')?.name = 'spring-boot-dynamo'
include 'SpringBootEvent'
findProject(':SpringBootEvent')?.name = 'spring-boot-event'
include 'SpringBootExcel'
findProject(':SpringBootExcel')?.name = 'spring-boot-excel'
include 'SpringBootException'
findProject(':SpringBootException')?.name = 'spring-boot-exception'
include 'SpringBootGracefulShutdown'
findProject(':SpringBootGracefulShutdown')?.name = 'spring-boot-graceful-shutdown'
include 'SpringBootGRpc'
findProject(':SpringBootGRpc')?.name = 'spring-boot-grpc'
include 'SpringBootHateoas'
findProject(':SpringBootHateoas')?.name = 'spring-boot-hateoas'
include 'SpringBootInterceptor'
findProject(':SpringBootInterceptor')?.name = 'spring-boot-interceptor'
include 'SpringBootJpa'
findProject(':SpringBootJpa')?.name = 'spring-boot-jpa'
include 'SpringBootJpaSecurity'
findProject(':SpringBootJpaSecurity')?.name = 'spring-boot-jpa-security'
include 'SpringBootLogStash'
findProject(':SpringBootLogStash')?.name = 'spring-boot-logstash'
include 'SpringBootMicroMeter'
findProject(':SpringBootMicroMeter')?.name = 'spring-boot-micrometer'
include 'SpringBootMybatis'
findProject(':SpringBootMybatis')?.name = 'spring-boot-mybatis'
include 'SpringBootNotice'
findProject(':SpringBootNotice')?.name = 'spring-boot-notice'
//include 'SpringBootOAuth2'
//findProject(':SpringBootOAuth2')?.name = 'spring-boot-oauth2'
include 'SpringBootQuartz'
findProject(':SpringBootQuartz')?.name = 'spring-boot-quartz'
include 'SpringBootQueryDsl'
findProject(':SpringBootQueryDsl')?.name = 'spring-boot-querydsl'
include 'SpringBootRabbitMQ'
findProject(':SpringBootRabbitMQ')?.name = 'spring-boot-rabbitmq'
include 'SpringBootRedis'
findProject(':SpringBootRedis')?.name = 'spring-boot-redis'
include 'SpringBootRest'
findProject(':SpringBootRest')?.name = 'spring-boot-rest'
include 'SpringBootRestDocs'
findProject(':SpringBootRestDocs')?.name = 'spring-boot-restdocs'
include 'SpringBootSecurityAddRedis'
findProject(':SpringBootSecurityAddRedis')?.name = 'spring-boot-security-redis'
include 'SpringBootSecurityJwt'
findProject(':SpringBootSecurityJwt')?.name = 'spring-boot-security-jwt'
include 'SpringBootSpringDocOpenApi'
findProject(':SpringBootSpringDocOpenApi')?.name = 'spring-boot-springdoc-openapi'
include 'SpringBootSse'
findProject(':SpringBootSse')?.name = 'spring-boot-sse'
include 'SpringBootStatemachine'
findProject(':SpringBootStatemachine')?.name = 'spring-boot-statemachine'
include 'SpringBootTest'
findProject(':SpringBootTest')?.name = 'spring-boot-test'
include 'SpringBootValidator'
findProject(':SpringBootValidator')?.name = 'spring-boot-validator'
include 'SpringBootVertx'
findProject(':SpringBootVertx')?.name = 'spring-boot-vertx'
include 'SpringBootWar'
findProject(':SpringBootWar')?.name = 'spring-boot-war'
include 'SpringBootWebFlux'
findProject(':SpringBootWebFlux')?.name = 'spring-boot-webflux'
include 'SpringBootWebSocket'
findProject(':SpringBootWebSocket')?.name = 'spring-boot-websocket'