107 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			XML
		
	
	
	
		
		
			
		
	
	
			107 lines
		
	
	
		
			3.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-admin</artifactId> | ||
|  |     <dependencies> | ||
|  |         <dependency> | ||
|  |             <groupId>com.yb.lb</groupId> | ||
|  |             <artifactId>crm-common</artifactId> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>com.yb.lb</groupId> | ||
|  |             <artifactId>crm-activity</artifactId> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>com.yb.lb</groupId> | ||
|  |             <artifactId>crm-webapp</artifactId> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework.boot</groupId> | ||
|  |             <artifactId>spring-boot-starter</artifactId> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework.boot</groupId> | ||
|  |             <artifactId>spring-boot-starter-test</artifactId> | ||
|  |             <scope>test</scope> | ||
|  |             <exclusions> | ||
|  |                 <exclusion> | ||
|  |                     <groupId>org.junit.vintage</groupId> | ||
|  |                     <artifactId>junit-vintage-engine</artifactId> | ||
|  |                 </exclusion> | ||
|  |             </exclusions> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  |         <!-- https://mvnrepository.com/artifact/org.json/json --> | ||
|  |         <dependency> | ||
|  |             <groupId>org.json</groupId> | ||
|  |             <artifactId>json</artifactId> | ||
|  |             <version>20180813</version> | ||
|  |         </dependency> | ||
|  |         <!--<dependency>
 | ||
|  |             <groupId>com.fasterxml.jackson.core</groupId> | ||
|  |             <artifactId>jackson-databind</artifactId> | ||
|  |             <version>2.7.4</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>com.fasterxml.jackson.core</groupId> | ||
|  |             <artifactId>jackson-core</artifactId> | ||
|  |             <version>2.7.4</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>com.fasterxml.jackson.core</groupId> | ||
|  |             <artifactId>jackson-annotations</artifactId> | ||
|  |             <version>2.7.4</version> | ||
|  |         </dependency>--> | ||
|  | 
 | ||
|  |         <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson --> | ||
|  |         <dependency> | ||
|  |             <groupId>com.google.code.gson</groupId> | ||
|  |             <artifactId>gson</artifactId> | ||
|  |             <version>2.8.7</version> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  | 
 | ||
|  |         <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient --> | ||
|  |         <dependency> | ||
|  |             <groupId>org.apache.httpcomponents</groupId> | ||
|  |             <artifactId>httpclient</artifactId> | ||
|  |             <version>4.5.1</version> | ||
|  |         </dependency> | ||
|  |     </dependencies> | ||
|  | 
 | ||
|  |     <properties> | ||
|  |         <maven.compiler.source>8</maven.compiler.source> | ||
|  |         <maven.compiler.target>8</maven.compiler.target> | ||
|  |     </properties> | ||
|  | 
 | ||
|  | 
 | ||
|  |     <build> | ||
|  |         <plugins> | ||
|  |             <plugin> | ||
|  |                 <groupId>org.springframework.boot</groupId> | ||
|  |                 <artifactId>spring-boot-maven-plugin</artifactId> | ||
|  |                 <configuration> | ||
|  |                     <!-- 指定该Main Class为全局的唯一入口 --> | ||
|  |                     <mainClass>com.yb.lb.CrmApplication</mainClass> | ||
|  |                     <layout>ZIP</layout> | ||
|  |                 </configuration> | ||
|  |                 <executions> | ||
|  |                     <execution> | ||
|  |                         <goals> | ||
|  |                             <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中--> | ||
|  |                         </goals> | ||
|  |                     </execution> | ||
|  |                 </executions> | ||
|  |             </plugin> | ||
|  |         </plugins> | ||
|  |     </build> | ||
|  | </project> |