| 
									
										
										
										
											2024-07-22 17:48:41 +08:00
										 |  |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							|  |  |  |  | <project xmlns="http://maven.apache.org/POM/4.0.0" | 
					
						
							|  |  |  |  |          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 
					
						
							|  |  |  |  |          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     <!-- 父工程 --> | 
					
						
							|  |  |  |  |     <parent> | 
					
						
							|  |  |  |  |         <groupId>org.hcy</groupId> | 
					
						
							|  |  |  |  |         <artifactId>charging_pile</artifactId> | 
					
						
							|  |  |  |  |         <version>1.0.0</version> | 
					
						
							|  |  |  |  |     </parent> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     <!-- 模块信息 --> | 
					
						
							|  |  |  |  |     <modelVersion>4.0.0</modelVersion> | 
					
						
							|  |  |  |  |     <artifactId>common</artifactId> | 
					
						
							|  |  |  |  |     <name>common</name> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     <build> | 
					
						
							|  |  |  |  |         <plugins> | 
					
						
							|  |  |  |  |             <plugin> | 
					
						
							|  |  |  |  |                 <groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  |  |                 <artifactId>maven-compiler-plugin</artifactId> | 
					
						
							|  |  |  |  |                 <configuration> | 
					
						
							|  |  |  |  |                     <source>1.8</source> | 
					
						
							|  |  |  |  |                     <target>1.8</target> | 
					
						
							|  |  |  |  |                 </configuration> | 
					
						
							|  |  |  |  |             </plugin> | 
					
						
							|  |  |  |  |         </plugins> | 
					
						
							|  |  |  |  |     </build> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     <!-- 依赖管理 --> | 
					
						
							|  |  |  |  |     <dependencies> | 
					
						
							|  |  |  |  |         <!-- Config依赖 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |             <artifactId>spring-boot-autoconfigure</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- Processor依赖 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |             <artifactId>spring-boot-configuration-processor</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- Web依赖 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |             <artifactId>spring-boot-starter-web</artifactId> | 
					
						
							|  |  |  |  |             <exclusions> | 
					
						
							|  |  |  |  |                 <exclusion> | 
					
						
							|  |  |  |  |                     <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |                     <artifactId>spring-boot-starter-logging</artifactId> | 
					
						
							|  |  |  |  |                 </exclusion> | 
					
						
							|  |  |  |  |             </exclusions> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- log4j2依赖 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |             <artifactId>spring-boot-starter-log4j2</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- Aop依赖 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |             <artifactId>spring-boot-starter-aop</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- Validation依赖 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |             <artifactId>spring-boot-starter-validation</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!--Redis依赖--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |             <artifactId>spring-boot-starter-data-redis</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- Mysql连接依赖 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>mysql</groupId> | 
					
						
							|  |  |  |  |             <artifactId>mysql-connector-java</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- MyBatisPlus依赖 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.baomidou</groupId> | 
					
						
							|  |  |  |  |             <artifactId>mybatis-plus-boot-starter</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- MyBatisPlusJoin依赖 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.github.yulichang</groupId> | 
					
						
							|  |  |  |  |             <artifactId>mybatis-plus-join</artifactId> | 
					
						
							|  |  |  |  |             <version>1.3.0</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- MyBatis分页依赖 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.github.pagehelper</groupId> | 
					
						
							|  |  |  |  |             <artifactId>pagehelper-spring-boot-starter</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- Lombok依赖 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.projectlombok</groupId> | 
					
						
							|  |  |  |  |             <artifactId>lombok</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- Fastjson --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.alibaba</groupId> | 
					
						
							|  |  |  |  |             <artifactId>fastjson</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- Lang3 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.apache.commons</groupId> | 
					
						
							|  |  |  |  |             <artifactId>commons-lang3</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- 通用池 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.apache.commons</groupId> | 
					
						
							|  |  |  |  |             <artifactId>commons-pool2</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- Gson --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.google.code.gson</groupId> | 
					
						
							|  |  |  |  |             <artifactId>gson</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- UserAgent --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>nl.bitwalker</groupId> | 
					
						
							|  |  |  |  |             <artifactId>UserAgentUtils</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- io常用工具类 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>commons-io</groupId> | 
					
						
							|  |  |  |  |             <artifactId>commons-io</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- 七牛云 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.qiniu</groupId> | 
					
						
							|  |  |  |  |             <artifactId>qiniu-java-sdk</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- 腾讯云COS --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.qcloud</groupId> | 
					
						
							|  |  |  |  |             <artifactId>cos_api</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- 阿里云OSS --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.aliyun.oss</groupId> | 
					
						
							|  |  |  |  |             <artifactId>aliyun-sdk-oss</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- 腾讯云短信 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.tencentcloudapi</groupId> | 
					
						
							|  |  |  |  |             <artifactId>tencentcloud-sdk-java</artifactId> | 
					
						
							|  |  |  |  |             <version>${tencentcloudapi.version}</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- 阿里云短信 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.aliyun</groupId> | 
					
						
							|  |  |  |  |             <artifactId>aliyun-java-sdk-core</artifactId> | 
					
						
							|  |  |  |  |             <version>${aliyun-java.version}</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- 系统监控 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.github.oshi</groupId> | 
					
						
							|  |  |  |  |             <artifactId>oshi-core</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- 微信小程序 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.github.binarywang</groupId> | 
					
						
							|  |  |  |  |             <artifactId>weixin-java-miniapp</artifactId> | 
					
						
							|  |  |  |  |             <version>4.4.0</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- 微信公众号 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.github.binarywang</groupId> | 
					
						
							|  |  |  |  |             <artifactId>weixin-java-mp</artifactId> | 
					
						
							|  |  |  |  |             <version>4.4.0</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.belerweb</groupId> | 
					
						
							|  |  |  |  |             <artifactId>pinyin4j</artifactId> | 
					
						
							|  |  |  |  |             <version>2.5.1</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!-- 微信支付 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.github.binarywang</groupId> | 
					
						
							|  |  |  |  |             <artifactId>weixin-java-pay</artifactId> | 
					
						
							|  |  |  |  |             <version>4.5.0</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!--微信支付SDK--> | 
					
						
							|  |  |  |  |         <!--<dependency>
 | 
					
						
							|  |  |  |  |             <groupId>com.github.wechatpay-apiv3</groupId> | 
					
						
							|  |  |  |  |             <artifactId>wechatpay-apache-httpclient</artifactId> | 
					
						
							|  |  |  |  |             <version>0.3.0</version> | 
					
						
							|  |  |  |  |         </dependency>--> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!--微信支付 APIv2 SDK--> | 
					
						
							|  |  |  |  |         <!--<dependency>
 | 
					
						
							|  |  |  |  |             <groupId>com.github.wxpay</groupId> | 
					
						
							|  |  |  |  |             <artifactId>wxpay-sdk</artifactId> | 
					
						
							|  |  |  |  |             <version>0.0.3</version> | 
					
						
							|  |  |  |  |         </dependency>--> | 
					
						
							|  |  |  |  |         <!--  swagger  接口文档UI--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>io.springfox</groupId> | 
					
						
							|  |  |  |  |             <artifactId>springfox-swagger2</artifactId> | 
					
						
							|  |  |  |  |             <version>2.8.0</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>io.springfox</groupId> | 
					
						
							|  |  |  |  |             <artifactId>springfox-swagger-ui</artifactId> | 
					
						
							|  |  |  |  |             <version>2.8.0</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.jetbrains</groupId> | 
					
						
							|  |  |  |  |             <artifactId>annotations</artifactId> | 
					
						
							|  |  |  |  |             <version>RELEASE</version> | 
					
						
							|  |  |  |  |             <scope>compile</scope> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!--https://gitee.com/dt_research_institute/map-client/tree/master/map-client-spring-boot-starter/src/main/java/com/github/xiaoymin/map/spring--> | 
					
						
							|  |  |  |  |         <!--<dependency>
 | 
					
						
							|  |  |  |  |             <groupId>com.github.xiaoymin</groupId> | 
					
						
							|  |  |  |  |             <artifactId>map-client-core</artifactId> | 
					
						
							|  |  |  |  |             <version>1.0</version> | 
					
						
							|  |  |  |  |         </dependency>--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.github.xiaoymin</groupId> | 
					
						
							|  |  |  |  |             <artifactId>map-client-core</artifactId> | 
					
						
							|  |  |  |  |             <version>1.1</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- 导出Excel --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.alibaba</groupId> | 
					
						
							|  |  |  |  |             <artifactId>easyexcel</artifactId> | 
					
						
							|  |  |  |  |             <version>3.0.5</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- netty网络框架 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>io.netty</groupId> | 
					
						
							|  |  |  |  |             <artifactId>netty-all</artifactId> | 
					
						
							|  |  |  |  |             <version>4.1.36.Final</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- Hutool脱敏工具 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>cn.hutool</groupId> | 
					
						
							|  |  |  |  |             <artifactId>hutool-core</artifactId> | 
					
						
							|  |  |  |  |             <version>5.8.16</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2024-08-01 18:56:05 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-13 21:14:07 +08:00
										 |  |  |  |         <!--zxing生成二维码--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.google.zxing</groupId> | 
					
						
							|  |  |  |  |             <artifactId>core</artifactId> | 
					
						
							|  |  |  |  |             <version>3.3.3</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2024-08-15 17:27:07 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-13 21:14:07 +08:00
										 |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.google.zxing</groupId> | 
					
						
							|  |  |  |  |             <artifactId>javase</artifactId> | 
					
						
							|  |  |  |  |             <version>3.3.3</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!--Hutool工具包生成--> | 
					
						
							|  |  |  |  |         <!--hutool工具包内部也是使用了ZXing库,但是帮我们封装好了,还提供了配置类,使用上更加简单。--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>cn.hutool</groupId> | 
					
						
							|  |  |  |  |             <artifactId>hutool-all</artifactId> | 
					
						
							|  |  |  |  |             <version>5.2.5</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2024-08-15 17:27:07 +08:00
										 |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.apache.tomcat.embed</groupId> | 
					
						
							|  |  |  |  |             <artifactId>tomcat-embed-core</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2024-08-13 21:14:07 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-22 17:48:41 +08:00
										 |  |  |  |     </dependencies> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | </project> |