63 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			XML
		
	
	
	
| <?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>
 | |
|         <artifactId>crmpoject</artifactId>
 | |
|         <groupId>com.yb.lb</groupId>
 | |
|         <version>0.0.1-SNAPSHOT</version>
 | |
|     </parent>
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
| 
 | |
|     <artifactId>crm-webapp</artifactId>
 | |
|     <description> 业务模块 </description>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>com.yb.lb</groupId>
 | |
|             <artifactId>crm-common</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.aspectj</groupId>
 | |
|             <artifactId>aspectjweaver</artifactId>
 | |
|             <version>1.9.6</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- 定时任务 -->
 | |
|         <dependency>
 | |
|             <groupId>org.quartz-scheduler</groupId>
 | |
|             <artifactId>quartz</artifactId>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <groupId>com.mchange</groupId>
 | |
|                     <artifactId>c3p0</artifactId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.thoughtworks.xstream</groupId>
 | |
|             <artifactId>xstream</artifactId>
 | |
|             <version>1.4.11.1</version>
 | |
|         </dependency>
 | |
|         <!-- https://mvnrepository.com/artifact/dom4j/dom4j -->
 | |
|         <dependency>
 | |
|             <groupId>dom4j</groupId>
 | |
|             <artifactId>dom4j</artifactId>
 | |
|             <version>1.6.1</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.google.code.gson</groupId>
 | |
|             <artifactId>gson</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-websocket</artifactId>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <properties>
 | |
|         <maven.compiler.source>8</maven.compiler.source>
 | |
|         <maven.compiler.target>8</maven.compiler.target>
 | |
|     </properties>
 | |
| 
 | |
| </project> |