@@ -22,32 +22,35 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
22
22
23
23
<dependencies >
24
24
25
- <!-- Spring Boot WebFlux -->
26
- <dependency >
27
- <groupId >org.springframework.boot</groupId >
28
- <artifactId >spring-boot-starter-webflux</artifactId >
29
- </dependency >
30
-
31
25
<!-- DB -->
32
- <dependency >
33
- <groupId >org.springframework.boot</groupId >
34
- <artifactId >spring-boot-starter-data-jpa</artifactId >
35
- </dependency >
36
-
37
26
<dependency >
38
27
<groupId >mysql</groupId >
39
28
<artifactId >mysql-connector-java</artifactId >
40
29
<version >8.0.17</version >
41
30
<scope >runtime</scope >
42
31
</dependency >
43
32
33
+ <dependency >
34
+ <groupId >com.microsoft.sqlserver</groupId >
35
+ <artifactId >mssql-jdbc</artifactId >
36
+ <scope >runtime</scope >
37
+ </dependency >
38
+
44
39
<dependency >
45
40
<groupId >org.projectlombok</groupId >
46
41
<artifactId >lombok</artifactId >
47
42
<version >1.18.24</version >
48
43
<optional >true</optional >
49
44
</dependency >
50
45
46
+
47
+ <!-- ORM -->
48
+
49
+ <dependency >
50
+ <groupId >org.springframework.boot</groupId >
51
+ <artifactId >spring-boot-starter-data-jpa</artifactId >
52
+ </dependency >
53
+
51
54
<dependency >
52
55
<groupId >com.querydsl</groupId >
53
56
<artifactId >querydsl-core</artifactId >
@@ -83,29 +86,15 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
83
86
<version >${querydsl.version} </version >
84
87
</dependency >
85
88
86
- <!-- SOAP Client -->
87
- <dependency >
88
- <groupId >org.springframework.boot</groupId >
89
- <artifactId >spring-boot-starter-web-services</artifactId >
90
- </dependency >
91
-
92
- <!-- REST API -->
93
- <dependency >
94
- <groupId >org.springframework.boot</groupId >
95
- <artifactId >spring-boot-starter-data-rest</artifactId >
96
- </dependency >
89
+ <!-- Expose API -->
97
90
98
91
<dependency >
99
92
<groupId >org.springframework.boot</groupId >
100
93
<artifactId >spring-boot-starter-web</artifactId >
101
94
</dependency >
102
95
103
- <dependency >
104
- <groupId >org.codehaus.jackson</groupId >
105
- <artifactId >jackson-jaxrs</artifactId >
106
- <version >1.9.13</version >
107
- </dependency >
108
96
97
+ <!-- spring-security & spring-security-oauth2-authorization-server -->
109
98
110
99
<dependency >
111
100
<groupId >org.springframework.boot</groupId >
@@ -127,13 +116,14 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
127
116
</dependency >
128
117
129
118
<dependency >
130
- <groupId >org.springframework.boot</groupId >
131
- <artifactId >spring-boot-starter-mail</artifactId >
119
+ <groupId >org.codehaus.jackson</groupId >
120
+ <artifactId >jackson-jaxrs</artifactId >
121
+ <version >1.9.13</version >
132
122
</dependency >
133
-
134
123
<dependency >
135
- <groupId >org.springframework.boot</groupId >
136
- <artifactId >spring-boot-starter-actuator</artifactId >
124
+ <groupId >org.apache.commons</groupId >
125
+ <artifactId >commons-lang3</artifactId >
126
+ <version >3.4</version >
137
127
</dependency >
138
128
139
129
<!-- TEST-->
@@ -146,7 +136,6 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
146
136
<dependency >
147
137
<groupId >org.springframework.security</groupId >
148
138
<artifactId >spring-security-test</artifactId >
149
- <!-- <version>5.3.5.RELEASE</version>-->
150
139
<scope >test</scope >
151
140
</dependency >
152
141
@@ -156,57 +145,18 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
156
145
<scope >test</scope >
157
146
</dependency >
158
147
148
+ <!-- Validation -->
159
149
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-validation -->
160
150
<dependency >
161
151
<groupId >org.springframework.boot</groupId >
162
152
<artifactId >spring-boot-starter-validation</artifactId >
163
- <version >3.1.2</version >
164
- </dependency >
165
-
166
-
167
-
168
- <!-- Apple Social Login -->
169
- <dependency >
170
- <groupId >com.nimbusds</groupId >
171
- <artifactId >nimbus-jose-jwt</artifactId >
172
- <version >9.37.3</version >
173
- </dependency >
174
- <dependency >
175
- <groupId >net.minidev</groupId >
176
- <artifactId >json-smart</artifactId >
177
- <version >2.3</version >
178
- </dependency >
179
- <dependency >
180
- <groupId >org.apache.httpcomponents</groupId >
181
- <artifactId >httpclient</artifactId >
182
- <version >4.5.14</version >
183
- </dependency >
184
-
185
-
186
-
187
- <dependency >
188
- <groupId >io.jsonwebtoken</groupId >
189
- <artifactId >jjwt-api</artifactId >
190
- <version >0.11.5</version >
191
- </dependency >
192
- <dependency >
193
- <groupId >io.jsonwebtoken</groupId >
194
- <artifactId >jjwt-impl</artifactId >
195
- <version >0.11.5</version >
196
- <scope >runtime</scope >
197
153
</dependency >
198
- <dependency >
199
- <groupId >io.jsonwebtoken</groupId >
200
- <artifactId >jjwt-jackson</artifactId >
201
- <version >0.11.5</version >
202
- <scope >runtime</scope >
203
- </dependency >
204
-
205
154
206
155
207
156
<dependency >
208
- <groupId >org.springframework</groupId >
209
- <artifactId >spring-orm</artifactId >
157
+ <groupId >javax.annotation</groupId >
158
+ <artifactId >javax.annotation-api</artifactId >
159
+ <version >1.3.2</version >
210
160
</dependency >
211
161
212
162
<dependency >
@@ -215,12 +165,6 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
215
165
</dependency >
216
166
217
167
218
- <dependency >
219
- <groupId >org.apache.commons</groupId >
220
- <artifactId >commons-lang3</artifactId >
221
- <version >3.4</version >
222
- </dependency >
223
-
224
168
<dependency >
225
169
<groupId >org.springframework.boot</groupId >
226
170
<artifactId >spring-boot-devtools</artifactId >
@@ -229,27 +173,6 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
229
173
230
174
231
175
232
- <dependency >
233
- <groupId >javax.annotation</groupId >
234
- <artifactId >javax.annotation-api</artifactId >
235
- <version >1.3.2</version >
236
- </dependency >
237
-
238
-
239
- <dependency >
240
- <groupId >org.jetbrains</groupId >
241
- <artifactId >annotations</artifactId >
242
- <version >RELEASE</version >
243
- <scope >compile</scope >
244
- </dependency >
245
-
246
- <dependency >
247
- <groupId >com.microsoft.sqlserver</groupId >
248
- <artifactId >mssql-jdbc</artifactId >
249
- <scope >runtime</scope >
250
- </dependency >
251
-
252
-
253
176
</dependencies >
254
177
255
178
<build >
0 commit comments