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.
		
		
		
		
		
			
		
			
				
	
	
		
			73 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			XML
		
	
			
		
		
	
	
			73 lines
		
	
	
		
			2.6 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>org.ils.billing</groupId>
 | |
|     <artifactId>ils-order-service</artifactId>
 | |
|     <version>1.0</version>
 | |
| 
 | |
|     <properties>
 | |
|         <maven.compiler.source>8</maven.compiler.source>
 | |
|         <maven.compiler.target>8</maven.compiler.target>
 | |
|         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 | |
|         <z.common.version>1.0.0-SNAPSHOT</z.common.version>
 | |
|     </properties>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>org.springframework.boot</groupId>
 | |
|         <artifactId>spring-boot-starter-parent</artifactId>
 | |
|         <version>2.6.6</version>
 | |
|         <relativePath/>
 | |
|     </parent>
 | |
|     <dependencies>
 | |
|         <!-- 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>
 | |
|     </dependencies>
 | |
|     <build>
 | |
|         <!--打包成jar包时的名字-->
 | |
|         <finalName>ilsEngineService-1.0</finalName>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.springframework.boot</groupId>
 | |
|                 <artifactId>spring-boot-maven-plugin</artifactId>
 | |
|                 <configuration>
 | |
|                     <mainClass>
 | |
|                         org.ils.order.IlsOrderServiceApplication
 | |
|                     </mainClass>
 | |
|                 </configuration>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <goals>
 | |
|                             <goal>repackage</goal>
 | |
|                         </goals>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| </project>
 |