|
18 | 18 | <!--Spring Projects--> |
19 | 19 | <spring.version>5.2.7.RELEASE</spring.version> |
20 | 20 | <spring.boot.version>2.3.1.RELEASE</spring.boot.version> |
21 | | - <security.oauth2.version>2.3.8.RELEASE</security.oauth2.version> |
22 | | - <spring.security.jwt.version>1.1.0.RELEASE</spring.security.jwt.version> |
23 | | - <spring-data-mongodb.version>3.0.1.RELEASE</spring-data-mongodb.version> |
24 | 21 |
|
25 | 22 | <!--Minbox Projects--> |
26 | | - <minbox.version>1.0.5.RELEASE</minbox.version> |
27 | | - <minbox-logging.version>1.0.5.RELEASE</minbox-logging.version> |
28 | | - <minbox-ratelimiter.version>1.0.0.RELEASE</minbox-ratelimiter.version> |
29 | | - <minbox-resource-load.version>1.0.0.RELEASE</minbox-resource-load.version> |
30 | | - <minbox-datasource-switch.version>1.0.0.RELEASE</minbox-datasource-switch.version> |
31 | | - <minbox-sequence.version>1.0.0.RELEASE</minbox-sequence.version> |
32 | | - <minbox-oauth.version>1.0.0.RELEASE</minbox-oauth.version> |
33 | | - <minbox-security.version>1.0.0.RELEASE</minbox-security.version> |
34 | | - <minbox-mongo-client-settings.version>1.0.0.RELEASE</minbox-mongo-client-settings.version> |
| 23 | + <minbox-bom.version>1.0.1-SNAPSHOT</minbox-bom.version> |
35 | 24 | <code.builder.core.version>1.0.5.RELEASE</code.builder.core.version> |
36 | | - <mybatis-enhance.version>1.1.3.RELEASE</mybatis-enhance.version> |
37 | | - <mybatis.pageable.core.version>1.0.7.RELEASE</mybatis.pageable.core.version> |
38 | 25 |
|
39 | 26 | <!--Others--> |
40 | | - <druid.version>1.1.21</druid.version> |
41 | 27 | <druid.starter.version>1.1.21</druid.starter.version> |
42 | | - <fastjson.version>1.2.60</fastjson.version> |
43 | 28 | <reflections.version>0.9.11</reflections.version> |
44 | | - <guava.version>29.0-jre</guava.version> |
45 | | - <swagger.version>2.9.2</swagger.version> |
46 | | - <alibaba.oss.version>2.8.3</alibaba.oss.version> |
47 | | - <aliyun.sdk.core.version>4.2.0</aliyun.sdk.core.version> |
48 | | - <aliyun.sdk.dysmsapi.version>1.1.0</aliyun.sdk.dysmsapi.version> |
49 | | - <quartz.version>2.3.2</quartz.version> |
50 | 29 | <jpush-client.version>3.3.11</jpush-client.version> |
51 | 30 | <mysema.codegen.version>0.6.8</mysema.codegen.version> |
52 | 31 | <javax-annotation-api.version>1.3.2</javax-annotation-api.version> |
53 | 32 | <nacos.config.version>0.2.7</nacos.config.version> |
54 | | - <aliyun-java-sdk-dm.version>3.3.1</aliyun-java-sdk-dm.version> |
55 | | - <mongo-driver-sync.version>4.0.4</mongo-driver-sync.version> |
56 | 33 |
|
57 | 34 | <!--Plugins--> |
58 | 35 | <maven-plugin-api.version>3.6.1</maven-plugin-api.version> |
|
74 | 51 | </dependency> |
75 | 52 | <dependency> |
76 | 53 | <groupId>org.minbox.framework</groupId> |
77 | | - <artifactId>minbox-dependencies</artifactId> |
78 | | - <version>${minbox.version}</version> |
| 54 | + <artifactId>minbox-bom</artifactId> |
| 55 | + <version>${minbox-bom.version}</version> |
79 | 56 | <scope>import</scope> |
80 | 57 | <type>pom</type> |
81 | 58 | </dependency> |
82 | | - |
83 | 59 | <!--SpringBoot Related Dependencies--> |
84 | 60 | <dependency> |
85 | 61 | <groupId>com.alibaba</groupId> |
|
92 | 68 | <version>${nacos.config.version}</version> |
93 | 69 | </dependency> |
94 | 70 |
|
95 | | - <!--Spring Related Dependencies--> |
96 | | - <dependency> |
97 | | - <groupId>org.springframework</groupId> |
98 | | - <artifactId>spring-tx</artifactId> |
99 | | - <version>${spring.version}</version> |
100 | | - </dependency> |
101 | | - <dependency> |
102 | | - <groupId>org.springframework.security.oauth</groupId> |
103 | | - <artifactId>spring-security-oauth2</artifactId> |
104 | | - <version>${security.oauth2.version}</version> |
105 | | - </dependency> |
106 | | - <dependency> |
107 | | - <groupId>org.springframework.security</groupId> |
108 | | - <artifactId>spring-security-jwt</artifactId> |
109 | | - <version>${spring.security.jwt.version}</version> |
110 | | - </dependency> |
111 | | - <dependency> |
112 | | - <groupId>org.springframework.data</groupId> |
113 | | - <artifactId>spring-data-mongodb</artifactId> |
114 | | - <version>${spring-data-mongodb.version}</version> |
115 | | - </dependency> |
116 | | - |
117 | | - <!--MinBox Related Dependencies--> |
118 | | - <dependency> |
119 | | - <groupId>org.minbox.framework</groupId> |
120 | | - <artifactId>minbox-web</artifactId> |
121 | | - <version>${minbox.version}</version> |
122 | | - </dependency> |
123 | | - <dependency> |
124 | | - <groupId>org.minbox.framework</groupId> |
125 | | - <artifactId>minbox-core</artifactId> |
126 | | - <version>${minbox.version}</version> |
127 | | - </dependency> |
128 | | - <dependency> |
129 | | - <groupId>org.minbox.framework</groupId> |
130 | | - <artifactId>minbox-logging-admin</artifactId> |
131 | | - <version>${minbox-logging.version}</version> |
132 | | - </dependency> |
133 | | - <dependency> |
134 | | - <groupId>org.minbox.framework</groupId> |
135 | | - <artifactId>minbox-logging-admin-ui</artifactId> |
136 | | - <version>${minbox-logging.version}</version> |
137 | | - </dependency> |
138 | | - <dependency> |
139 | | - <groupId>org.minbox.framework</groupId> |
140 | | - <artifactId>minbox-logging-client</artifactId> |
141 | | - <version>${minbox-logging.version}</version> |
142 | | - </dependency> |
143 | | - <dependency> |
144 | | - <groupId>org.minbox.framework</groupId> |
145 | | - <artifactId>minbox-logging-spring-context</artifactId> |
146 | | - <version>${minbox-logging.version}</version> |
147 | | - </dependency> |
148 | | - <dependency> |
149 | | - <groupId>org.minbox.framework</groupId> |
150 | | - <artifactId>minbox-mongo-client-settings</artifactId> |
151 | | - <version>${minbox-mongo-client-settings.version}</version> |
152 | | - </dependency> |
| 71 | + <!--MinBox Dependencies--> |
153 | 72 | <dependency> |
154 | 73 | <groupId>com.gitee.hengboy</groupId> |
155 | 74 | <artifactId>code-builder-core</artifactId> |
156 | 75 | <version>${code.builder.core.version}</version> |
157 | 76 | </dependency> |
158 | | - <dependency> |
159 | | - <groupId>com.gitee.hengboy</groupId> |
160 | | - <artifactId>mybatis-pageable-core</artifactId> |
161 | | - <version>${mybatis.pageable.core.version}</version> |
162 | | - </dependency> |
163 | | - <dependency> |
164 | | - <groupId>com.gitee.hengboy</groupId> |
165 | | - <artifactId>mybatis-enhance-core</artifactId> |
166 | | - <version>${mybatis-enhance.version}</version> |
167 | | - </dependency> |
168 | | - <dependency> |
169 | | - <groupId>com.gitee.hengboy</groupId> |
170 | | - <artifactId>mybatis-enhance-dsl</artifactId> |
171 | | - <version>${mybatis-enhance.version}</version> |
172 | | - </dependency> |
173 | | - <dependency> |
174 | | - <groupId>org.minbox.framework</groupId> |
175 | | - <artifactId>minbox-ratelimiter</artifactId> |
176 | | - <version>${minbox-ratelimiter.version}</version> |
177 | | - </dependency> |
178 | | - <dependency> |
179 | | - <groupId>org.minbox.framework</groupId> |
180 | | - <artifactId>minbox-resource-load</artifactId> |
181 | | - <version>${minbox-resource-load.version}</version> |
182 | | - </dependency> |
183 | | - <dependency> |
184 | | - <groupId>org.minbox.framework</groupId> |
185 | | - <artifactId>minbox-datasource-switch</artifactId> |
186 | | - <version>${minbox-datasource-switch.version}</version> |
187 | | - </dependency> |
188 | | - <dependency> |
189 | | - <groupId>org.minbox.framework</groupId> |
190 | | - <artifactId>minbox-sequence</artifactId> |
191 | | - <version>${minbox-sequence.version}</version> |
192 | | - </dependency> |
193 | | - <dependency> |
194 | | - <groupId>org.minbox.framework</groupId> |
195 | | - <artifactId>minbox-oauth</artifactId> |
196 | | - <version>${minbox-oauth.version}</version> |
197 | | - </dependency> |
198 | | - <dependency> |
199 | | - <groupId>org.minbox.framework</groupId> |
200 | | - <artifactId>minbox-security</artifactId> |
201 | | - <version>${minbox-security.version}</version> |
202 | | - </dependency> |
203 | 77 |
|
204 | 78 |
|
205 | 79 | <!--ApiBoot Dependencies--> |
|
319 | 193 |
|
320 | 194 |
|
321 | 195 | <!--Others--> |
322 | | - <dependency> |
323 | | - <groupId>com.alibaba</groupId> |
324 | | - <artifactId>fastjson</artifactId> |
325 | | - <version>${fastjson.version}</version> |
326 | | - </dependency> |
327 | | - <dependency> |
328 | | - <groupId>com.alibaba</groupId> |
329 | | - <artifactId>druid</artifactId> |
330 | | - <version>${druid.version}</version> |
331 | | - </dependency> |
332 | 196 | <dependency> |
333 | 197 | <groupId>org.reflections</groupId> |
334 | 198 | <artifactId>reflections</artifactId> |
335 | 199 | <version>${reflections.version}</version> |
336 | 200 | </dependency> |
337 | | - <dependency> |
338 | | - <groupId>com.google.guava</groupId> |
339 | | - <artifactId>guava</artifactId> |
340 | | - <version>${guava.version}</version> |
341 | | - </dependency> |
342 | 201 | <dependency> |
343 | 202 | <groupId>org.apache.maven</groupId> |
344 | 203 | <artifactId>maven-plugin-api</artifactId> |
|
349 | 208 | <artifactId>maven-plugin-annotations</artifactId> |
350 | 209 | <version>${maven-plugin-annotations.version}</version> |
351 | 210 | </dependency> |
352 | | - <dependency> |
353 | | - <groupId>io.springfox</groupId> |
354 | | - <artifactId>springfox-swagger-ui</artifactId> |
355 | | - <version>${swagger.version}</version> |
356 | | - </dependency> |
357 | | - <dependency> |
358 | | - <groupId>io.springfox</groupId> |
359 | | - <artifactId>springfox-swagger2</artifactId> |
360 | | - <version>${swagger.version}</version> |
361 | | - </dependency> |
362 | | - <dependency> |
363 | | - <groupId>io.springfox</groupId> |
364 | | - <artifactId>springfox-bean-validators</artifactId> |
365 | | - <version>${swagger.version}</version> |
366 | | - </dependency> |
367 | | - <dependency> |
368 | | - <groupId>com.aliyun.oss</groupId> |
369 | | - <artifactId>aliyun-sdk-oss</artifactId> |
370 | | - <version>${alibaba.oss.version}</version> |
371 | | - </dependency> |
372 | | - <dependency> |
373 | | - <groupId>com.aliyun</groupId> |
374 | | - <artifactId>aliyun-java-sdk-core</artifactId> |
375 | | - <version>${aliyun.sdk.core.version}</version> |
376 | | - </dependency> |
377 | | - <dependency> |
378 | | - <groupId>com.aliyun</groupId> |
379 | | - <artifactId>aliyun-java-sdk-dysmsapi</artifactId> |
380 | | - <version>${aliyun.sdk.dysmsapi.version}</version> |
381 | | - </dependency> |
382 | | - <dependency> |
383 | | - <groupId>org.quartz-scheduler</groupId> |
384 | | - <artifactId>quartz</artifactId> |
385 | | - <version>${quartz.version}</version> |
386 | | - </dependency> |
387 | 211 | <dependency> |
388 | 212 | <groupId>cn.jpush.api</groupId> |
389 | 213 | <artifactId>jpush-client</artifactId> |
|
394 | 218 | <artifactId>codegen</artifactId> |
395 | 219 | <version>${mysema.codegen.version}</version> |
396 | 220 | </dependency> |
397 | | - <dependency> |
398 | | - <groupId>com.aliyun</groupId> |
399 | | - <artifactId>aliyun-java-sdk-dm</artifactId> |
400 | | - <version>${aliyun-java-sdk-dm.version}</version> |
401 | | - </dependency> |
402 | 221 | <dependency> |
403 | 222 | <groupId>javax.annotation</groupId> |
404 | 223 | <artifactId>javax.annotation-api</artifactId> |
405 | 224 | <version>${javax-annotation-api.version}</version> |
406 | 225 | </dependency> |
407 | | - <dependency> |
408 | | - <groupId>org.mongodb</groupId> |
409 | | - <artifactId>mongodb-driver-sync</artifactId> |
410 | | - <version>${mongo-driver-sync.version}</version> |
411 | | - </dependency> |
412 | 226 | </dependencies> |
413 | 227 | </dependencyManagement> |
414 | 228 |
|
|
0 commit comments