79 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			XML
		
	
	
	
		
		
			
		
	
	
			79 lines
		
	
	
		
			2.7 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-activity</artifactId> | ||
|  | 
 | ||
|  |     <dependencies> | ||
|  |         <dependency> | ||
|  |             <groupId>com.yb.lb</groupId> | ||
|  |             <artifactId>crm-common</artifactId> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>com.yb.lb</groupId> | ||
|  |             <artifactId>crm-webapp</artifactId> | ||
|  |         </dependency> | ||
|  |         <!--工作流+ springBoot集成--> | ||
|  |         <dependency> | ||
|  |             <groupId>org.activiti</groupId> | ||
|  |             <artifactId>activiti-spring-boot-starter-basic</artifactId> | ||
|  |             <version>6.0.0</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.activiti</groupId> | ||
|  |             <artifactId>activiti-engine</artifactId> | ||
|  |             <version>6.0.0</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework.security</groupId> | ||
|  |             <artifactId>spring-security-config</artifactId> | ||
|  |             <version>4.1.3.RELEASE</version> | ||
|  |         </dependency> | ||
|  |         <!--工作流建模 activiti modeler start--> | ||
|  |         <dependency> | ||
|  |             <groupId>org.activiti</groupId> | ||
|  |             <artifactId>activiti-json-converter</artifactId> | ||
|  |             <version>6.0.0</version> | ||
|  |             <exclusions> | ||
|  |                 <exclusion> | ||
|  |                     <groupId>org.activiti</groupId> | ||
|  |                     <artifactId>activiti-bpmn-model</artifactId> | ||
|  |                 </exclusion> | ||
|  |             </exclusions> | ||
|  |         </dependency> | ||
|  |         <!-- xml解析依赖--> | ||
|  |         <dependency> | ||
|  |             <groupId>org.apache.xmlgraphics</groupId> | ||
|  |             <artifactId>batik-codec</artifactId> | ||
|  |             <version>1.7</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.apache.xmlgraphics</groupId> | ||
|  |             <artifactId>batik-css</artifactId> | ||
|  |             <version> 1.7</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.apache.xmlgraphics</groupId> | ||
|  |             <artifactId>batik-svg-dom</artifactId> | ||
|  |             <version>1.7</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.apache.xmlgraphics</groupId> | ||
|  |             <artifactId>batik-svggen</artifactId> | ||
|  |             <version>1.7</version> | ||
|  |         </dependency> | ||
|  |     </dependencies> | ||
|  | 
 | ||
|  |     <properties> | ||
|  |         <maven.compiler.source>8</maven.compiler.source> | ||
|  |         <maven.compiler.target>8</maven.compiler.target> | ||
|  |     </properties> | ||
|  | 
 | ||
|  | </project> |