|
19 | 19 | </properties> |
20 | 20 |
|
21 | 21 | <dependencies> |
22 | | - <!-- <dependency>--> |
23 | | - <!-- <groupId>org.springframework.boot</groupId>--> |
24 | | - <!-- <artifactId>spring-boot-starter-actuator</artifactId>--> |
25 | | - <!-- </dependency>--> |
26 | | - <!-- <dependency>--> |
27 | | - <!-- <groupId>org.springframework.boot</groupId>--> |
28 | | - <!-- <artifactId>spring-boot-starter-amqp</artifactId>--> |
29 | | - <!-- </dependency>--> |
30 | | - <!-- <dependency>--> |
31 | | - <!-- <groupId>org.springframework.boot</groupId>--> |
32 | | - <!-- <artifactId>spring-boot-starter-batch</artifactId>--> |
33 | | - <!-- </dependency>--> |
34 | | - <!-- <dependency>--> |
35 | | - <!-- <groupId>org.springframework.boot</groupId>--> |
36 | | - <!-- <artifactId>spring-boot-starter-data-elasticsearch</artifactId>--> |
37 | | - <!-- </dependency>--> |
38 | | - <!-- <dependency>--> |
39 | | - <!-- <groupId>org.springframework.boot</groupId>--> |
40 | | - <!-- <artifactId>spring-boot-starter-data-redis</artifactId>--> |
41 | | - <!-- </dependency>--> |
42 | | - <!-- <dependency>--> |
43 | | - <!-- <groupId>org.springframework.boot</groupId>--> |
44 | | - <!-- <artifactId>spring-boot-starter-data-redis-reactive</artifactId>--> |
45 | | - <!-- </dependency>--> |
46 | | - <!-- <dependency>--> |
47 | | - <!-- <groupId>org.springframework.boot</groupId>--> |
48 | | - <!-- <artifactId>spring-boot-starter-jdbc</artifactId>--> |
49 | | - <!-- </dependency>--> |
50 | | - <dependency> |
51 | | - <groupId>org.springframework.boot</groupId> |
52 | | - <artifactId>spring-boot-starter-mail</artifactId> |
53 | | - <version>2.7.0</version> |
54 | | - </dependency> |
55 | | - <!-- <dependency>--> |
56 | | - <!-- <groupId>org.springframework.boot</groupId>--> |
57 | | - <!-- <artifactId>spring-boot-starter-oauth2-client</artifactId>--> |
58 | | - <!-- </dependency>--> |
59 | | - <!-- <dependency>--> |
60 | | - <!-- <groupId>org.springframework.boot</groupId>--> |
61 | | - <!-- <artifactId>spring-boot-starter-oauth2-resource-server</artifactId>--> |
62 | | - <!-- </dependency>--> |
63 | | - <!-- <dependency>--> |
64 | | - <!-- <groupId>org.springframework.boot</groupId>--> |
65 | | - <!-- <artifactId>spring-boot-starter-security</artifactId>--> |
66 | | - <!-- </dependency>--> |
67 | | - <!-- <dependency>--> |
68 | | - <!-- <groupId>org.springframework.boot</groupId>--> |
69 | | - <!-- <artifactId>spring-boot-starter-thymeleaf</artifactId>--> |
70 | | - <!-- </dependency>--> |
71 | | - <dependency> |
72 | | - <groupId>org.springframework.boot</groupId> |
73 | | - <artifactId>spring-boot-starter-web</artifactId> |
74 | | - <version>2.7.0</version> |
75 | | - </dependency> |
76 | | - <dependency> |
77 | | - <groupId>org.springframework.boot</groupId> |
78 | | - <artifactId>spring-boot-starter-websocket</artifactId> |
79 | | - <version>2.7.0</version> |
80 | | - </dependency> |
81 | | - <!-- <dependency>--> |
82 | | - <!-- <groupId>org.mybatis.spring.boot</groupId>--> |
83 | | - <!-- <artifactId>mybatis-spring-boot-starter</artifactId>--> |
84 | | - <!-- <version>2.2.1</version>--> |
85 | | - <!-- </dependency>--> |
86 | | - <dependency> |
87 | | - <groupId>org.springframework.cloud</groupId> |
88 | | - <artifactId>spring-cloud-config-server</artifactId> |
89 | | - <version>3.1.3</version> |
90 | | - </dependency> |
91 | | - <dependency> |
92 | | - <groupId>org.springframework.cloud</groupId> |
93 | | - <artifactId>spring-cloud-starter-config</artifactId> |
94 | | - <version>3.1.3</version> |
95 | | - </dependency> |
96 | | - <!-- <dependency>--> |
97 | | - <!-- <groupId>org.thymeleaf.extras</groupId>--> |
98 | | - <!-- <artifactId>thymeleaf-extras-springsecurity5</artifactId>--> |
99 | | - <!-- </dependency>--> |
100 | | - <dependency> |
101 | | - <groupId>org.springframework.boot</groupId> |
102 | | - <artifactId>spring-boot-devtools</artifactId> |
103 | | - <version>2.7.0</version> |
104 | | - <scope>runtime</scope> |
105 | | - <optional>true</optional> |
106 | | - </dependency> |
107 | 22 | <dependency> |
108 | 23 | <groupId>mysql</groupId> |
109 | 24 | <artifactId>mysql-connector-java</artifactId> |
110 | 25 | <version>8.0.29</version> |
111 | 26 | <scope>runtime</scope> |
112 | 27 | </dependency> |
113 | | - <dependency> |
114 | | - <groupId>org.springframework.boot</groupId> |
115 | | - <artifactId>spring-boot-configuration-processor</artifactId> |
116 | | - <version>2.7.0</version> |
117 | | - <optional>true</optional> |
118 | | - </dependency> |
119 | 28 | <dependency> |
120 | 29 | <groupId>org.projectlombok</groupId> |
121 | 30 | <artifactId>lombok</artifactId> |
122 | 31 | <version>1.18.24</version> |
123 | 32 | <optional>true</optional> |
124 | 33 | </dependency> |
125 | | - <dependency> |
126 | | - <groupId>org.springframework.boot</groupId> |
127 | | - <artifactId>spring-boot-starter-test</artifactId> |
128 | | - <version>2.7.0</version> |
129 | | - <scope>test</scope> |
130 | | - </dependency> |
131 | | - <!-- <dependency>--> |
132 | | - <!-- <groupId>io.projectreactor</groupId>--> |
133 | | - <!-- <artifactId>reactor-test</artifactId>--> |
134 | | - <!-- <scope>test</scope>--> |
135 | | - <!-- </dependency>--> |
136 | | - <!-- <dependency>--> |
137 | | - <!-- <groupId>org.springframework.amqp</groupId>--> |
138 | | - <!-- <artifactId>spring-rabbit-test</artifactId>--> |
139 | | - <!-- <scope>test</scope>--> |
140 | | - <!-- </dependency>--> |
141 | | - <!-- <dependency>--> |
142 | | - <!-- <groupId>org.springframework.batch</groupId>--> |
143 | | - <!-- <artifactId>spring-batch-test</artifactId>--> |
144 | | - <!-- <scope>test</scope>--> |
145 | | - <!-- </dependency>--> |
146 | | - <!-- <dependency>--> |
147 | | - <!-- <groupId>org.springframework.restdocs</groupId>--> |
148 | | - <!-- <artifactId>spring-restdocs-mockmvc</artifactId>--> |
149 | | - <!-- <scope>test</scope>--> |
150 | | - <!-- </dependency>--> |
151 | | - <!-- <dependency>--> |
152 | | - <!-- <groupId>org.springframework.security</groupId>--> |
153 | | - <!-- <artifactId>spring-security-test</artifactId>--> |
154 | | - <!-- <scope>test</scope>--> |
155 | | - <!-- </dependency>--> |
156 | 34 | <!-- Sa-Token 权限认证, 在线文档:http://sa-token.dev33.cn/ --> |
157 | 35 | <dependency> |
158 | 36 | <groupId>cn.dev33</groupId> |
|
186 | 64 | <artifactId>hutool-all</artifactId> |
187 | 65 | <version>5.8.3</version> |
188 | 66 | </dependency> |
189 | | - <!-- <dependency>--> |
190 | | - <!-- <groupId>org.springframework.boot</groupId>--> |
191 | | - <!-- <artifactId>spring-boot-starter-data-jpa</artifactId>--> |
192 | | - <!-- <version>2.6.2</version>--> |
193 | | - <!-- <scope>compile</scope>--> |
194 | | - <!-- </dependency>--> |
195 | | - <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson --> |
196 | 67 | <dependency> |
197 | 68 | <groupId>com.google.code.gson</groupId> |
198 | 69 | <artifactId>gson</artifactId> |
199 | 70 | <version>2.9.0</version> |
200 | 71 | </dependency> |
201 | | -<!-- <!–elasticsearch–>--> |
202 | | -<!-- <dependency>--> |
203 | | -<!-- <groupId>org.elasticsearch.client</groupId>--> |
204 | | -<!-- <artifactId>elasticsearch-rest-high-level-client</artifactId>--> |
205 | | -<!-- <version>7.16.3</version>--> |
206 | | -<!-- </dependency>--> |
207 | | -<!-- <dependency>--> |
208 | | -<!-- <groupId>org.elasticsearch</groupId>--> |
209 | | -<!-- <artifactId>elasticsearch</artifactId>--> |
210 | | -<!-- <version>8.0.0</version>--> |
211 | | -<!-- </dependency>--> |
212 | | - <dependency> |
213 | | - <groupId>com.freewayso</groupId> |
214 | | - <artifactId>image-combiner</artifactId> |
215 | | - <version>2.3.5</version> |
216 | | - </dependency> |
217 | | - <!-- <dependency>--> |
218 | | - <!-- <groupId>com.alibaba</groupId>--> |
219 | | - <!-- <artifactId>druid-spring-boot-starter</artifactId>--> |
220 | | - <!-- <version>1.2.8</version>--> |
221 | | - <!-- </dependency>--> |
222 | | -<!-- <dependency>--> |
223 | | -<!-- <groupId>com.alibaba.spring.boot</groupId>--> |
224 | | -<!-- <artifactId>dubbo-spring-boot-starter</artifactId>--> |
225 | | -<!-- <version>2.0.0</version>--> |
226 | | -<!-- <scope>compile</scope>--> |
227 | | -<!-- </dependency>--> |
228 | 72 | <!-- https://mvnrepository.com/artifact/com.alibaba/druid --> |
229 | 73 | <dependency> |
230 | 74 | <groupId>com.alibaba</groupId> |
|
241 | 85 | <artifactId>commons-lang3</artifactId> |
242 | 86 | <version>3.12.0</version> |
243 | 87 | </dependency> |
244 | | - <!-- maven 导入 --> |
245 | | - <dependency> |
246 | | - <groupId>cloud.tianai.captcha</groupId> |
247 | | - <artifactId>tianai-captcha</artifactId> |
248 | | - <version>1.3.2</version> |
249 | | - </dependency> |
250 | 88 | </dependencies> |
251 | 89 |
|
252 | | - <dependencyManagement> |
253 | | - <dependencies> |
254 | | - <dependency> |
255 | | - <groupId>org.springframework.cloud</groupId> |
256 | | - <artifactId>spring-cloud-dependencies</artifactId> |
257 | | - <version>${spring-cloud.version}</version> |
258 | | - <type>pom</type> |
259 | | - <scope>import</scope> |
260 | | - </dependency> |
261 | | - </dependencies> |
262 | | - </dependencyManagement> |
263 | | - |
264 | 90 | <repositories> |
265 | 91 | <repository> |
266 | 92 | <id>central</id> |
|
0 commit comments