|
@@ -0,0 +1,120 @@
|
|
1
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
3
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
4
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
5
|
+ <modelVersion>4.0.0</modelVersion>
|
|
6
|
+
|
|
7
|
+ <parent>
|
|
8
|
+ <groupId>com.jingtong.common</groupId>
|
|
9
|
+ <artifactId>common</artifactId>
|
|
10
|
+ <version>0.0.1</version>
|
|
11
|
+ </parent>
|
|
12
|
+
|
|
13
|
+ <artifactId>server</artifactId>
|
|
14
|
+ <version>0.0.1</version>
|
|
15
|
+ <description>SpringBoot Application Server Core Config</description>
|
|
16
|
+
|
|
17
|
+ <dependencies>
|
|
18
|
+ <dependency>
|
|
19
|
+ <groupId>org.springframework.boot</groupId>
|
|
20
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
21
|
+ </dependency>
|
|
22
|
+ <dependency>
|
|
23
|
+ <groupId>org.springframework.boot</groupId>
|
|
24
|
+ <artifactId>spring-boot-starter-webflux</artifactId>
|
|
25
|
+ </dependency>
|
|
26
|
+ <dependency>
|
|
27
|
+ <groupId>org.springframework.boot</groupId>
|
|
28
|
+ <artifactId>spring-boot-starter-jdbc</artifactId>
|
|
29
|
+ </dependency>
|
|
30
|
+
|
|
31
|
+ <dependency>
|
|
32
|
+ <groupId>com.jingtong.common</groupId>
|
|
33
|
+ <artifactId>data</artifactId>
|
|
34
|
+ <version>0.0.1</version>
|
|
35
|
+ </dependency>
|
|
36
|
+ <dependency>
|
|
37
|
+ <groupId>com.jingtong.common</groupId>
|
|
38
|
+ <artifactId>base</artifactId>
|
|
39
|
+ <version>0.0.1</version>
|
|
40
|
+ </dependency>
|
|
41
|
+ <dependency>
|
|
42
|
+ <groupId>com.jingtong.common</groupId>
|
|
43
|
+ <artifactId>util</artifactId>
|
|
44
|
+ <version>0.0.1</version>
|
|
45
|
+ </dependency>
|
|
46
|
+ <dependency>
|
|
47
|
+ <groupId>com.baomidou</groupId>
|
|
48
|
+ <artifactId>mybatis-plus</artifactId>
|
|
49
|
+ </dependency>
|
|
50
|
+ <dependency>
|
|
51
|
+ <groupId>com.baomidou</groupId>
|
|
52
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
53
|
+ </dependency>
|
|
54
|
+ <dependency>
|
|
55
|
+ <groupId>org.aspectj</groupId>
|
|
56
|
+ <artifactId>aspectjweaver</artifactId>
|
|
57
|
+ </dependency>
|
|
58
|
+ <dependency>
|
|
59
|
+ <groupId>org.mapstruct</groupId>
|
|
60
|
+ <artifactId>mapstruct</artifactId>
|
|
61
|
+ </dependency>
|
|
62
|
+ <dependency>
|
|
63
|
+ <groupId>org.springframework.security</groupId>
|
|
64
|
+ <artifactId>spring-security-jwt</artifactId>
|
|
65
|
+ <version>1.0.10.RELEASE</version>
|
|
66
|
+ </dependency>
|
|
67
|
+ <dependency>
|
|
68
|
+ <groupId>com.github.xiaoymin</groupId>
|
|
69
|
+ <artifactId>knife4j-spring-boot-starter</artifactId>
|
|
70
|
+ <version>${knife4j.version}</version>
|
|
71
|
+ </dependency>
|
|
72
|
+ <dependency>
|
|
73
|
+ <groupId>org.apache.commons</groupId>
|
|
74
|
+ <artifactId>commons-lang3</artifactId>
|
|
75
|
+ </dependency>
|
|
76
|
+ <dependency>
|
|
77
|
+ <groupId>io.github.openfeign</groupId>
|
|
78
|
+ <artifactId>feign-core</artifactId>
|
|
79
|
+ </dependency>
|
|
80
|
+ <!-- xxl-job-core -->
|
|
81
|
+ <dependency>
|
|
82
|
+ <groupId>com.xuxueli</groupId>
|
|
83
|
+ <artifactId>xxl-job-core</artifactId>
|
|
84
|
+ </dependency>
|
|
85
|
+ <dependency>
|
|
86
|
+ <groupId>org.springframework.cloud</groupId>
|
|
87
|
+ <artifactId>spring-cloud-openfeign-core</artifactId>
|
|
88
|
+ </dependency>
|
|
89
|
+ <dependency>
|
|
90
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
91
|
+ <artifactId>spring-cloud-alibaba-seata</artifactId>
|
|
92
|
+ <exclusions>
|
|
93
|
+ <exclusion>
|
|
94
|
+ <artifactId>seata-all</artifactId>
|
|
95
|
+ <groupId>io.seata</groupId>
|
|
96
|
+ </exclusion>
|
|
97
|
+ </exclusions>
|
|
98
|
+ </dependency>
|
|
99
|
+ <dependency>
|
|
100
|
+ <groupId>io.seata</groupId>
|
|
101
|
+ <artifactId>seata-all</artifactId>
|
|
102
|
+ </dependency>
|
|
103
|
+ <!--mysql驱动-->
|
|
104
|
+ <dependency>
|
|
105
|
+ <groupId>mysql</groupId>
|
|
106
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
107
|
+ </dependency>
|
|
108
|
+ <dependency>
|
|
109
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
110
|
+ <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
|
111
|
+ </dependency>
|
|
112
|
+ <!-- https://mvnrepository.com/artifact/cn.afterturn/easypoi-spring-boot-starter -->
|
|
113
|
+ <dependency>
|
|
114
|
+ <groupId>cn.afterturn</groupId>
|
|
115
|
+ <artifactId>easypoi-spring-boot-starter</artifactId>
|
|
116
|
+ <version>4.3.0</version>
|
|
117
|
+ </dependency>
|
|
118
|
+
|
|
119
|
+ </dependencies>
|
|
120
|
+</project>
|