| 
									
										
										
										
											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"> | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-13 21:14:07 +08:00
										 |  |  |  | <!-- 父工程 --> | 
					
						
							| 
									
										
										
										
											2024-07-22 17:48:41 +08:00
										 |  |  |  |     <parent> | 
					
						
							|  |  |  |  |         <artifactId>charging_pile</artifactId> | 
					
						
							|  |  |  |  |         <groupId>org.hcy</groupId> | 
					
						
							|  |  |  |  |         <version>1.0.0</version> | 
					
						
							|  |  |  |  |     </parent> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     <!-- 模块信息 --> | 
					
						
							|  |  |  |  |     <modelVersion>4.0.0</modelVersion> | 
					
						
							|  |  |  |  |     <artifactId>admin</artifactId> | 
					
						
							|  |  |  |  |     <packaging>jar</packaging> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     <!-- 项目管理 --> | 
					
						
							|  |  |  |  |     <dependencies> | 
					
						
							|  |  |  |  |         <!-- 公共依赖 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.hcy</groupId> | 
					
						
							|  |  |  |  |             <artifactId>common</artifactId> | 
					
						
							|  |  |  |  |             <version>1.0.0</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.hcy</groupId> | 
					
						
							|  |  |  |  |             <artifactId>generator</artifactId> | 
					
						
							|  |  |  |  |             <version>1.0.0</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- Quartz-Scheduler --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.quartz-scheduler</groupId> | 
					
						
							|  |  |  |  |             <artifactId>quartz</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2024-08-02 20:56:41 +08:00
										 |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.alibaba</groupId> | 
					
						
							|  |  |  |  |             <artifactId>fastjson</artifactId> | 
					
						
							|  |  |  |  |             <version>1.2.83</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.alibaba.fastjson2</groupId> | 
					
						
							|  |  |  |  |             <artifactId>fastjson2</artifactId> | 
					
						
							|  |  |  |  |             <version>2.0.12</version> | 
					
						
							|  |  |  |  |             <scope>compile</scope> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2024-08-13 21:14:07 +08:00
										 |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.hcy</groupId> | 
					
						
							|  |  |  |  |             <artifactId>common</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.apache.tomcat.embed</groupId> | 
					
						
							|  |  |  |  |             <artifactId>tomcat-embed-core</artifactId> | 
					
						
							|  |  |  |  |             <version>9.0.83</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2024-07-22 17:48:41 +08:00
										 |  |  |  |     </dependencies> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     <!-- 插件管理 --> | 
					
						
							|  |  |  |  |     <build> | 
					
						
							|  |  |  |  |         <plugins> | 
					
						
							|  |  |  |  |             <plugin> | 
					
						
							|  |  |  |  |                 <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |                 <artifactId>spring-boot-maven-plugin</artifactId> | 
					
						
							|  |  |  |  |                 <executions> | 
					
						
							|  |  |  |  |                     <execution> | 
					
						
							|  |  |  |  |                         <goals> | 
					
						
							|  |  |  |  |                             <goal>repackage</goal> | 
					
						
							|  |  |  |  |                         </goals> | 
					
						
							|  |  |  |  |                     </execution> | 
					
						
							|  |  |  |  |                 </executions> | 
					
						
							|  |  |  |  |             </plugin> | 
					
						
							|  |  |  |  |         </plugins> | 
					
						
							|  |  |  |  |     </build> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | </project> |