|
10 | 10 | <parent>
|
11 | 11 | <groupId>org.springframework.boot</groupId>
|
12 | 12 | <artifactId>spring-boot-starter-parent</artifactId>
|
13 |
| - <version>2.2.4.RELEASE</version> |
| 13 | + <version>2.4.0</version> |
14 | 14 | <relativePath/>
|
15 | 15 | </parent>
|
16 | 16 | <repositories>
|
|
49 | 49 | <curator.veresion>4.0.1</curator.veresion>
|
50 | 50 | </properties>
|
51 | 51 | <dependencies>
|
| 52 | + <dependency> |
| 53 | + <groupId>org.codehaus.janino</groupId> |
| 54 | + <artifactId>janino</artifactId> |
| 55 | + </dependency> |
52 | 56 | <dependency>
|
53 | 57 | <groupId>org.springframework.boot</groupId>
|
54 | 58 | <artifactId>spring-boot-starter-web</artifactId>
|
|
67 | 71 | <artifactId>tomcat-embed-jasper</artifactId>
|
68 | 72 | <scope>provided</scope>
|
69 | 73 | </dependency>
|
70 |
| - <!-- https://mvnrepository.com/artifact/org.apache.curator/curator-framework --> |
71 |
| - |
72 |
| - <dependency> |
73 |
| - <groupId>org.redisson</groupId> |
74 |
| - <artifactId>redisson</artifactId> |
75 |
| - <version>${redisson.version}</version> |
76 |
| - </dependency> |
77 | 74 | <!-- webSocket所需依赖 -->
|
78 | 75 | <dependency>
|
79 | 76 | <groupId>javax</groupId>
|
|
91 | 88 | <dependency>
|
92 | 89 | <groupId>com.google.guava</groupId>
|
93 | 90 | <artifactId>guava</artifactId>
|
94 |
| - <version>22.0</version> |
| 91 | + <version>28.2-jre</version> |
95 | 92 | </dependency>
|
96 |
| - |
97 |
| - <!-- https://mvnrepository.com/artifact/redis.clients/jedis --> |
98 | 93 | <dependency>
|
99 |
| - <groupId>redis.clients</groupId> |
100 |
| - <artifactId>jedis</artifactId> |
101 |
| - <version>${jedis.version}</version> |
| 94 | + <groupId>org.springframework.boot</groupId> |
| 95 | + <artifactId>spring-boot-starter-data-redis</artifactId> |
102 | 96 | </dependency>
|
103 |
| - |
104 | 97 | <dependency>
|
105 | 98 | <groupId>org.springframework.boot</groupId>
|
106 | 99 | <artifactId>spring-boot-starter-logging</artifactId>
|
107 | 100 | </dependency>
|
108 | 101 | <dependency>
|
109 |
| - <groupId>org.aspectj</groupId> |
110 |
| - <artifactId>aspectjrt</artifactId> |
111 |
| - <version>1.8.9</version> |
112 |
| - </dependency> |
113 |
| - <dependency> |
114 |
| - <groupId>org.aspectj</groupId> |
115 |
| - <artifactId>aspectjweaver</artifactId> |
116 |
| - <version>1.8.9</version> |
| 102 | + <groupId>org.springframework.boot</groupId> |
| 103 | + <artifactId>spring-boot-starter-aop</artifactId> |
117 | 104 | </dependency>
|
118 | 105 | <dependency>
|
119 | 106 | <groupId>mysql</groupId>
|
120 | 107 | <artifactId>mysql-connector-java</artifactId>
|
121 |
| - <version>${mysql.version}</version> |
122 | 108 | </dependency>
|
123 | 109 | <dependency>
|
124 | 110 | <groupId>commons-dbcp</groupId>
|
|
129 | 115 | <dependency>
|
130 | 116 | <groupId>junit</groupId>
|
131 | 117 | <artifactId>junit</artifactId>
|
132 |
| - <version>${junit.version}</version> |
133 | 118 | </dependency>
|
134 | 119 | <!-- File Upload -->
|
135 | 120 |
|
|
148 | 133 | <artifactId>java-sdk</artifactId>
|
149 | 134 | <version>4.0.1</version>
|
150 | 135 | </dependency>
|
151 |
| - <!-- 添加日志支持 --> |
152 |
| - <!-- log begin --> |
153 |
| - <dependency> |
154 |
| - <groupId>ch.qos.logback</groupId> |
155 |
| - <artifactId>logback-access</artifactId> |
156 |
| - <version>${logback.version}</version> |
157 |
| - </dependency> |
158 |
| - <dependency> |
159 |
| - <groupId>ch.qos.logback</groupId> |
160 |
| - <artifactId>logback-core</artifactId> |
161 |
| - <version>${logback.version}</version> |
162 |
| - </dependency> |
163 |
| - <!-- log end --> |
164 |
| - |
165 | 136 | <!-- 添加百度编辑器ueditor支持 -->
|
166 | 137 | <dependency>
|
167 | 138 | <groupId>commons-fileupload</groupId>
|
|
188 | 159 | <artifactId>commons-lang3</artifactId>
|
189 | 160 | <version>3.7</version>
|
190 | 161 | </dependency>
|
191 |
| - |
192 |
| - <!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils --> |
193 |
| - <dependency> |
194 |
| - <groupId>commons-beanutils</groupId> |
195 |
| - <artifactId>commons-beanutils</artifactId> |
196 |
| - <version>1.9.4</version> |
197 |
| - <exclusions> |
198 |
| - <exclusion> |
199 |
| - <artifactId>commons-logging</artifactId> |
200 |
| - <groupId>commons-logging</groupId> |
201 |
| - </exclusion> |
202 |
| - </exclusions> |
203 |
| - </dependency> |
204 | 162 | <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
|
205 | 163 | <dependency>
|
206 | 164 | <groupId>com.google.code.gson</groupId>
|
207 | 165 | <artifactId>gson</artifactId>
|
208 |
| - <version>2.8.2</version> |
209 | 166 | </dependency>
|
210 | 167 |
|
211 | 168 |
|
|
288 | 245 | <version>${lucene.version}</version>
|
289 | 246 | </dependency>
|
290 | 247 | <dependency>
|
291 |
| - <groupId>org.springframework.boot</groupId> |
292 |
| - <artifactId>spring-boot-starter-data-redis</artifactId> |
| 248 | + <groupId>org.apache.tomcat.embed</groupId> |
| 249 | + <artifactId>tomcat-embed-jasper</artifactId> |
| 250 | + <scope>provided</scope> |
293 | 251 | </dependency>
|
294 | 252 | <dependency>
|
295 | 253 | <groupId>com.alibaba</groupId>
|
|
418 | 376 | <artifactId>ganymed-ssh2</artifactId>
|
419 | 377 | <version>262</version>
|
420 | 378 | </dependency>
|
421 |
| - <!-- http缓存 --> |
422 | 379 | <dependency>
|
423 |
| - <groupId>org.apache.httpcomponents</groupId> |
424 |
| - <artifactId>httpclient</artifactId> |
425 |
| - <version>4.5.3</version> |
426 |
| - <exclusions> |
427 |
| - <exclusion> |
428 |
| - <artifactId>commons-codec</artifactId> |
429 |
| - <groupId>commons-codec</groupId> |
430 |
| - </exclusion> |
431 |
| - <exclusion> |
432 |
| - <artifactId>httpcore</artifactId> |
433 |
| - <groupId>org.apache.httpcomponents</groupId> |
434 |
| - </exclusion> |
435 |
| - <exclusion> |
436 |
| - <artifactId>commons-logging</artifactId> |
437 |
| - <groupId>commons-logging</groupId> |
438 |
| - </exclusion> |
439 |
| - </exclusions> |
| 380 | + <groupId>org.projectlombok</groupId> |
| 381 | + <artifactId>lombok</artifactId> |
440 | 382 | </dependency>
|
441 | 383 | <dependency>
|
442 | 384 | <groupId>org.apache.httpcomponents</groupId>
|
|
449 | 391 | </exclusion>
|
450 | 392 | </exclusions>
|
451 | 393 | </dependency>
|
452 |
| - <!--http的mime类型都在这里面--> |
453 |
| - <dependency> |
454 |
| - <groupId>org.apache.httpcomponents</groupId> |
455 |
| - <artifactId>httpmime</artifactId> |
456 |
| - <version>4.5.3</version> |
457 |
| - </dependency> |
458 |
| - <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore-nio --> |
459 |
| - <dependency> |
460 |
| - <groupId>org.apache.httpcomponents</groupId> |
461 |
| - <artifactId>httpcore-nio</artifactId> |
462 |
| - <version>4.4.8</version> |
463 |
| - </dependency> |
464 | 394 | <dependency>
|
465 | 395 | <groupId>com.github.hoverruan</groupId>
|
466 | 396 | <artifactId>weiboclient4j</artifactId>
|
|
472 | 402 | <artifactId>jython-standalone</artifactId>
|
473 | 403 | <version>2.7.1</version>
|
474 | 404 | </dependency>
|
475 |
| - <dependency> |
476 |
| - <groupId>com.fasterxml.jackson.core</groupId> |
477 |
| - <artifactId>jackson-databind</artifactId> |
478 |
| - <version>2.10.0.pr1</version> |
479 |
| - </dependency> |
480 |
| - <dependency> |
481 |
| - <groupId>org.projectlombok</groupId> |
482 |
| - <artifactId>lombok</artifactId> |
483 |
| - <version>1.18.12</version> |
484 |
| - <scope>provided</scope> |
485 |
| - </dependency> |
486 | 405 | <!-- https://mvnrepository.com/artifact/cn.easyproject/easyocr -->
|
487 | 406 | <dependency>
|
488 | 407 | <groupId>cn.easyproject</groupId>
|
|
495 | 414 | <artifactId>java-sdk</artifactId>
|
496 | 415 | <version>4.0.0</version>
|
497 | 416 | </dependency>
|
498 |
| - <dependency> |
499 |
| - <groupId>org.apache.zookeeper</groupId> |
500 |
| - <artifactId>zookeeper</artifactId> |
501 |
| - <version>3.4.10</version> |
502 |
| - <exclusions> |
503 |
| - <exclusion> |
504 |
| - <artifactId>slf4j-api</artifactId> |
505 |
| - <groupId>org.slf4j</groupId> |
506 |
| - </exclusion> |
507 |
| - <exclusion> |
508 |
| - <artifactId>slf4j-log4j12</artifactId> |
509 |
| - <groupId>org.slf4j</groupId> |
510 |
| - </exclusion> |
511 |
| - </exclusions> |
512 |
| - </dependency> |
513 |
| - <dependency> |
514 |
| - <groupId>com.github.sgroschupf</groupId> |
515 |
| - <artifactId>zkclient</artifactId> |
516 |
| - <version>0.1</version> |
517 |
| - <exclusions> |
518 |
| - <exclusion> |
519 |
| - <artifactId>zookeeper</artifactId> |
520 |
| - <groupId>org.apache.zookeeper</groupId> |
521 |
| - </exclusion> |
522 |
| - <exclusion> |
523 |
| - <artifactId>log4j</artifactId> |
524 |
| - <groupId>log4j</groupId> |
525 |
| - </exclusion> |
526 |
| - </exclusions> |
527 |
| - </dependency> |
528 |
| - <dependency> |
529 |
| - <groupId>org.apache.kafka</groupId> |
530 |
| - <artifactId>kafka_2.12</artifactId> |
531 |
| - <version>1.0.0</version> |
532 |
| - <exclusions> |
533 |
| - <exclusion> |
534 |
| - <artifactId>slf4j-log4j12</artifactId> |
535 |
| - <groupId>org.slf4j</groupId> |
536 |
| - </exclusion> |
537 |
| - </exclusions> |
538 |
| - </dependency> |
539 |
| - <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api --> |
540 |
| - <dependency> |
541 |
| - <groupId>org.slf4j</groupId> |
542 |
| - <artifactId>slf4j-api</artifactId> |
543 |
| - <version>${slf4j.version}</version> |
544 |
| - </dependency> |
545 |
| - <!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic --> |
546 |
| - <dependency> |
547 |
| - <groupId>ch.qos.logback</groupId> |
548 |
| - <artifactId>logback-classic</artifactId> |
549 |
| - <version>1.2.3</version> |
550 |
| - </dependency> |
551 |
| - <!-- https://mvnrepository.com/artifact/org.slf4j/log4j-over-slf4j --> |
552 |
| - <dependency> |
553 |
| - <groupId>org.slf4j</groupId> |
554 |
| - <artifactId>log4j-over-slf4j</artifactId> |
555 |
| - <version>${slf4j.version}</version> |
556 |
| - </dependency> |
557 |
| - |
558 | 417 | </dependencies>
|
559 | 418 | <build>
|
560 | 419 | <resources>
|
|
0 commit comments