|
@@ -0,0 +1,256 @@
|
|
1
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+<!--
|
|
3
|
+ ~ The Hefei JingTong RDC(Research and Development Centre) Group.
|
|
4
|
+ ~ __________________
|
|
5
|
+ ~
|
|
6
|
+ ~ Copyright 2015-2021
|
|
7
|
+ ~ All Rights Reserved.
|
|
8
|
+ ~
|
|
9
|
+ ~ NOTICE: All information contained herein is, and remains
|
|
10
|
+ ~ the property of JingTong Company and its suppliers,
|
|
11
|
+ ~ if any.
|
|
12
|
+ -->
|
|
13
|
+
|
|
14
|
+<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
15
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
16
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
17
|
+ <modelVersion>4.0.0</modelVersion>
|
|
18
|
+
|
|
19
|
+ <groupId>com.jingtong</groupId>
|
|
20
|
+ <artifactId>jingtong-pom</artifactId>
|
|
21
|
+ <version>0.0.1</version>
|
|
22
|
+ <packaging>pom</packaging>
|
|
23
|
+
|
|
24
|
+ <properties>
|
|
25
|
+ <jixiang.version>0.0.1</jixiang.version>
|
|
26
|
+ <java.version>1.8</java.version>
|
|
27
|
+ <maven.compiler.source>1.8</maven.compiler.source>
|
|
28
|
+ <maven.compiler.target>1.8</maven.compiler.target>
|
|
29
|
+
|
|
30
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
31
|
+ <encoding>UTF-8</encoding>
|
|
32
|
+
|
|
33
|
+ <spring-boot.version>2.3.8.RELEASE</spring-boot.version>
|
|
34
|
+ <spring-cloud.version>Hoxton.SR8</spring-cloud.version>
|
|
35
|
+ <spring.cloud.alibaba.version>2.2.5.RELEASE</spring.cloud.alibaba.version>
|
|
36
|
+
|
|
37
|
+ <mybatis-plus.version>3.4.1</mybatis-plus.version>
|
|
38
|
+
|
|
39
|
+ <mariadb.version>2.6.2</mariadb.version>
|
|
40
|
+
|
|
41
|
+ <aviator.version>5.2.1</aviator.version>
|
|
42
|
+ <wxchat.version>3.9.0</wxchat.version>
|
|
43
|
+
|
|
44
|
+ <guava.version>29.0-jre</guava.version>
|
|
45
|
+ <hutool.version>5.5.4</hutool.version>
|
|
46
|
+ <commons-io.version>2.5</commons-io.version>
|
|
47
|
+
|
|
48
|
+ <okhttp3.version>4.9.0</okhttp3.version>
|
|
49
|
+ <lombok.version>1.18.16</lombok.version>
|
|
50
|
+ <slf4j.version>1.7.30</slf4j.version>
|
|
51
|
+ <logback.version>1.2.3</logback.version>
|
|
52
|
+ <jackson-bom.version>2.11.3</jackson-bom.version>
|
|
53
|
+ <protobuf.version>3.11.4</protobuf.version>
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+ <seata.version>1.4.1</seata.version>
|
|
57
|
+ <knife4j.version>2.0.1</knife4j.version>
|
|
58
|
+ <org.mapstruct.version>1.4.2.Final</org.mapstruct.version>
|
|
59
|
+ <xxljob.version>2.3.0</xxljob.version>
|
|
60
|
+ <seata.version>1.4.0</seata.version>
|
|
61
|
+ </properties>
|
|
62
|
+ <dependencyManagement>
|
|
63
|
+ <dependencies>
|
|
64
|
+ <dependency>
|
|
65
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
66
|
+ <artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
|
67
|
+ <version>${spring.cloud.alibaba.version}</version>
|
|
68
|
+ <type>pom</type>
|
|
69
|
+ <scope>import</scope>
|
|
70
|
+ </dependency>
|
|
71
|
+ <dependency>
|
|
72
|
+ <groupId>org.springframework.cloud</groupId>
|
|
73
|
+ <artifactId>spring-cloud-dependencies</artifactId>
|
|
74
|
+ <version>${spring-cloud.version}</version>
|
|
75
|
+ <type>pom</type>
|
|
76
|
+ <scope>import</scope>
|
|
77
|
+ </dependency>
|
|
78
|
+ <!-- spring boot 依赖 -->
|
|
79
|
+ <dependency>
|
|
80
|
+ <groupId>org.springframework.boot</groupId>
|
|
81
|
+ <artifactId>spring-boot-dependencies</artifactId>
|
|
82
|
+ <version>${spring-boot.version}</version>
|
|
83
|
+ <type>pom</type>
|
|
84
|
+ <scope>import</scope>
|
|
85
|
+ </dependency>
|
|
86
|
+
|
|
87
|
+ <dependency>
|
|
88
|
+ <groupId>commons-io</groupId>
|
|
89
|
+ <artifactId>commons-io</artifactId>
|
|
90
|
+ <version>${commons-io.version}</version>
|
|
91
|
+ </dependency>
|
|
92
|
+ <dependency>
|
|
93
|
+ <groupId>com.google.protobuf</groupId>
|
|
94
|
+ <artifactId>protobuf-java</artifactId>
|
|
95
|
+ <version>${protobuf.version}</version>
|
|
96
|
+ </dependency>
|
|
97
|
+ <dependency>
|
|
98
|
+ <groupId>org.slf4j</groupId>
|
|
99
|
+ <artifactId>slf4j-api</artifactId>
|
|
100
|
+ <version>${slf4j.version}</version>
|
|
101
|
+ </dependency>
|
|
102
|
+ <dependency>
|
|
103
|
+ <groupId>org.slf4j</groupId>
|
|
104
|
+ <artifactId>log4j-over-slf4j</artifactId>
|
|
105
|
+ <version>${slf4j.version}</version>
|
|
106
|
+ </dependency>
|
|
107
|
+ <dependency>
|
|
108
|
+ <groupId>ch.qos.logback</groupId>
|
|
109
|
+ <artifactId>logback-core</artifactId>
|
|
110
|
+ <version>${logback.version}</version>
|
|
111
|
+ </dependency>
|
|
112
|
+ <dependency>
|
|
113
|
+ <groupId>ch.qos.logback</groupId>
|
|
114
|
+ <artifactId>logback-classic</artifactId>
|
|
115
|
+ <version>${logback.version}</version>
|
|
116
|
+ </dependency>
|
|
117
|
+
|
|
118
|
+ <dependency>
|
|
119
|
+ <groupId>cn.hutool</groupId>
|
|
120
|
+ <artifactId>hutool-core</artifactId>
|
|
121
|
+ <version>${hutool.version}</version>
|
|
122
|
+ </dependency>
|
|
123
|
+ <dependency>
|
|
124
|
+ <groupId>cn.hutool</groupId>
|
|
125
|
+ <artifactId>hutool-crypto</artifactId>
|
|
126
|
+ <version>${hutool.version}</version>
|
|
127
|
+ </dependency>
|
|
128
|
+
|
|
129
|
+ <dependency>
|
|
130
|
+ <groupId>com.google.guava</groupId>
|
|
131
|
+ <artifactId>guava</artifactId>
|
|
132
|
+ <version>${guava.version}</version>
|
|
133
|
+ </dependency>
|
|
134
|
+
|
|
135
|
+ <dependency>
|
|
136
|
+ <groupId>com.googlecode.aviator</groupId>
|
|
137
|
+ <artifactId>aviator</artifactId>
|
|
138
|
+ <version>${aviator.version}</version>
|
|
139
|
+ <exclusions>
|
|
140
|
+ <exclusion>
|
|
141
|
+ <groupId>commons-logging</groupId>
|
|
142
|
+ <artifactId>commons-logging</artifactId>
|
|
143
|
+ </exclusion>
|
|
144
|
+ <exclusion>
|
|
145
|
+ <groupId>commons-collections</groupId>
|
|
146
|
+ <artifactId>commons-collections</artifactId>
|
|
147
|
+ </exclusion>
|
|
148
|
+ </exclusions>
|
|
149
|
+ </dependency>
|
|
150
|
+
|
|
151
|
+ <dependency>
|
|
152
|
+ <groupId>com.github.binarywang</groupId>
|
|
153
|
+ <artifactId>weixin-java-mp</artifactId>
|
|
154
|
+ <version>${wxchat.version}</version>
|
|
155
|
+ </dependency>
|
|
156
|
+ <dependency>
|
|
157
|
+ <groupId>com.github.binarywang</groupId>
|
|
158
|
+ <artifactId>weixin-java-miniapp</artifactId>
|
|
159
|
+ <version>${wxchat.version}</version>
|
|
160
|
+ </dependency>
|
|
161
|
+ <dependency>
|
|
162
|
+ <groupId>com.squareup.okhttp3</groupId>
|
|
163
|
+ <artifactId>okhttp</artifactId>
|
|
164
|
+ <version>${okhttp3.version}</version>
|
|
165
|
+ </dependency>
|
|
166
|
+
|
|
167
|
+ <!-- Mybatis Plus 插件 -->
|
|
168
|
+ <dependency>
|
|
169
|
+ <groupId>com.baomidou</groupId>
|
|
170
|
+ <artifactId>mybatis-plus</artifactId>
|
|
171
|
+ <version>${mybatis-plus.version}</version>
|
|
172
|
+ </dependency>
|
|
173
|
+ <dependency>
|
|
174
|
+ <groupId>com.baomidou</groupId>
|
|
175
|
+ <artifactId>mybatis-plus-core</artifactId>
|
|
176
|
+ <version>${mybatis-plus.version}</version>
|
|
177
|
+ </dependency>
|
|
178
|
+ <dependency>
|
|
179
|
+ <groupId>com.baomidou</groupId>
|
|
180
|
+ <artifactId>mybatis-plus-extension</artifactId>
|
|
181
|
+ <version>${mybatis-plus.version}</version>
|
|
182
|
+ </dependency>
|
|
183
|
+ <dependency>
|
|
184
|
+ <groupId>com.baomidou</groupId>
|
|
185
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
186
|
+ <version>${mybatis-plus.version}</version>
|
|
187
|
+ </dependency>
|
|
188
|
+ <dependency>
|
|
189
|
+ <groupId>com.baomidou</groupId>
|
|
190
|
+ <artifactId>mybatis-plus-generator</artifactId>
|
|
191
|
+ <version>${mybatis-plus.version}</version>
|
|
192
|
+ </dependency>
|
|
193
|
+ <dependency>
|
|
194
|
+ <groupId>org.mapstruct</groupId>
|
|
195
|
+ <artifactId>mapstruct</artifactId>
|
|
196
|
+ <version>${org.mapstruct.version}</version>
|
|
197
|
+ </dependency>
|
|
198
|
+ <dependency>
|
|
199
|
+ <groupId>p6spy</groupId>
|
|
200
|
+ <artifactId>p6spy</artifactId>
|
|
201
|
+ <version>3.9.0</version>
|
|
202
|
+ </dependency>
|
|
203
|
+ <!--mysql驱动-->
|
|
204
|
+ <dependency>
|
|
205
|
+ <groupId>mysql</groupId>
|
|
206
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
207
|
+ <version>5.1.48</version>
|
|
208
|
+ </dependency>
|
|
209
|
+ <dependency>
|
|
210
|
+ <groupId>com.jixiang.common</groupId>
|
|
211
|
+ <artifactId>util</artifactId>
|
|
212
|
+ <version>${project.version}</version>
|
|
213
|
+ </dependency>
|
|
214
|
+ <dependency>
|
|
215
|
+ <groupId>com.jixiang.common</groupId>
|
|
216
|
+ <artifactId>data</artifactId>
|
|
217
|
+ <version>${project.version}</version>
|
|
218
|
+ </dependency>
|
|
219
|
+ <dependency>
|
|
220
|
+ <groupId>com.jixiang.common</groupId>
|
|
221
|
+ <artifactId>server</artifactId>
|
|
222
|
+ <version>${project.version}</version>
|
|
223
|
+ </dependency>
|
|
224
|
+ <dependency>
|
|
225
|
+ <groupId>com.jixiang.common</groupId>
|
|
226
|
+ <artifactId>base</artifactId>
|
|
227
|
+ <version>${project.version}</version>
|
|
228
|
+ </dependency>
|
|
229
|
+ <!-- xxl-job-core -->
|
|
230
|
+
|
|
231
|
+ <dependency>
|
|
232
|
+ <groupId>com.xuxueli</groupId>
|
|
233
|
+ <artifactId>xxl-job-core</artifactId>
|
|
234
|
+ <version>${xxljob.version}</version>
|
|
235
|
+ </dependency>
|
|
236
|
+ <dependency>
|
|
237
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
238
|
+ <artifactId>spring-cloud-alibaba-seata</artifactId>
|
|
239
|
+ <exclusions>
|
|
240
|
+ <exclusion>
|
|
241
|
+ <artifactId>seata-all</artifactId>
|
|
242
|
+ <groupId>io.seata</groupId>
|
|
243
|
+ </exclusion>
|
|
244
|
+ </exclusions>
|
|
245
|
+ <version>2.1.1.RELEASE</version>
|
|
246
|
+ </dependency>
|
|
247
|
+ <dependency>
|
|
248
|
+ <groupId>io.seata</groupId>
|
|
249
|
+ <artifactId>seata-all</artifactId>
|
|
250
|
+ <version>${seata.version}</version>
|
|
251
|
+ </dependency>
|
|
252
|
+ </dependencies>
|
|
253
|
+ </dependencyManagement>
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+</project>
|