You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			126 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			XML
		
	
			
		
		
	
	
			126 lines
		
	
	
		
			4.4 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">
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
| 
 | |
|     <groupId>com.ils.oms</groupId>
 | |
|     <artifactId>ils-order-service</artifactId>
 | |
|     <version>1.0</version>
 | |
| 
 | |
|     <properties>
 | |
|         <java.version>1.8</java.version>
 | |
|         <maven.compiler.source>8</maven.compiler.source>
 | |
|         <maven.compiler.target>8</maven.compiler.target>
 | |
| 
 | |
|         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 | |
|         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
 | |
| 
 | |
|         <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
 | |
| 
 | |
|         <z.common.version>1.0.0-SNAPSHOT</z.common.version>
 | |
| 
 | |
|         <apache.commons.lang3.version>3.12.0</apache.commons.lang3.version>
 | |
|         <apache.commons.collections.version>4.4</apache.commons.collections.version>
 | |
|         <google.guava.version>31.1-jre</google.guava.version>
 | |
|     </properties>
 | |
|     <parent>
 | |
|         <groupId>com.z</groupId>
 | |
|         <artifactId>platform</artifactId>
 | |
|         <version>1.0.0-RELEASE</version>
 | |
|     </parent>
 | |
| <!--    <parent>-->
 | |
| <!--        <groupId>org.springframework.boot</groupId>-->
 | |
| <!--        <artifactId>spring-boot-starter-parent</artifactId>-->
 | |
| <!--        <version>2.6.6</version>-->
 | |
| <!--        <relativePath/>-->
 | |
| <!--    </parent>-->
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>com.z.common</groupId>
 | |
|             <artifactId>z-common-mysql</artifactId>
 | |
|             <version>${z.common.version}</version>
 | |
|         </dependency>
 | |
|         <!-- Z common redis依赖 -->
 | |
|         <dependency>
 | |
|             <groupId>com.z.common</groupId>
 | |
|             <artifactId>z-common-redis</artifactId>
 | |
|             <version>${z.common.version}</version>
 | |
|         </dependency>
 | |
|         <!-- Z common rabbitmq 依赖 -->
 | |
|         <dependency>
 | |
|             <groupId>com.z.common</groupId>
 | |
|             <artifactId>z-common-rabbitmq</artifactId>
 | |
|             <version>${z.common.version}</version>
 | |
|         </dependency>
 | |
|         <!-- Z common swagger 依赖 -->
 | |
|         <dependency>
 | |
|             <groupId>com.z.common</groupId>
 | |
|             <artifactId>z-common-swagger</artifactId>
 | |
|             <version>${z.common.version}</version>
 | |
|         </dependency>
 | |
|         <!-- Z common core 依赖 -->
 | |
|         <dependency>
 | |
|             <groupId>com.z.common</groupId>
 | |
|             <artifactId>z-common-core</artifactId>
 | |
|             <version>${z.common.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- Apache commons -->
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-lang3</artifactId>
 | |
|             <version>${apache.commons.lang3.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-collections4</artifactId>
 | |
|             <version>${apache.commons.collections.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- Google guava -->
 | |
|         <dependency>
 | |
|             <groupId>com.google.guava</groupId>
 | |
|             <artifactId>guava</artifactId>
 | |
|             <version>${google.guava.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- efficiency -->
 | |
|         <dependency>
 | |
|             <groupId>org.projectlombok</groupId>
 | |
|             <artifactId>lombok</artifactId>
 | |
|             <optional>true</optional>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- testing -->
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-test</artifactId>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|     </dependencies>
 | |
|     <build>
 | |
|         <!--打包成jar包时的名字-->
 | |
|         <finalName>ilsEngineService-1.0</finalName>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.springframework.boot</groupId>
 | |
|                 <artifactId>spring-boot-maven-plugin</artifactId>
 | |
|                 <configuration>
 | |
|                     <mainClass>
 | |
|                         com.ils.oms.IlsOrderServiceApplication
 | |
|                     </mainClass>
 | |
|                 </configuration>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <goals>
 | |
|                             <goal>repackage</goal>
 | |
|                         </goals>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| </project>
 |