107 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			107 lines
		
	
	
		
			3.5 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>sgzb-modules</artifactId>
 | 
						|
        <groupId>com.bonus.sgzb</groupId>
 | 
						|
        <version>3.6.3</version>
 | 
						|
    </parent>
 | 
						|
    <modelVersion>4.0.0</modelVersion>
 | 
						|
 | 
						|
    <artifactId>sgzb-modules-settlement</artifactId>
 | 
						|
 | 
						|
    <description>
 | 
						|
        sgzb-modules-settlement
 | 
						|
    </description>
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.bonus.sgzb</groupId>
 | 
						|
            <artifactId>sgzb-common-core</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.bonus.sgzb</groupId>
 | 
						|
            <artifactId>sgzb-common-security</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.bonus.sgzb</groupId>
 | 
						|
            <artifactId>sgzb-common-swagger</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <!-- SpringCloud Alibaba Nacos -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.alibaba.cloud</groupId>
 | 
						|
            <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- SpringCloud Alibaba Nacos Config -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.alibaba.cloud</groupId>
 | 
						|
            <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- SpringCloud Alibaba Sentinel -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.alibaba.cloud</groupId>
 | 
						|
            <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- SpringBoot Actuator -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-actuator</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- Swagger UI -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>io.springfox</groupId>
 | 
						|
            <artifactId>springfox-swagger-ui</artifactId>
 | 
						|
            <version>${swagger.fox.version}</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- Mysql Connector -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.mysql</groupId>
 | 
						|
            <artifactId>mysql-connector-j</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- RuoYi Common DataSource -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.bonus.sgzb</groupId>
 | 
						|
            <artifactId>sgzb-common-datasource</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- RuoYi Common DataScope -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.bonus.sgzb</groupId>
 | 
						|
            <artifactId>sgzb-common-datascope</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- RuoYi Common Log -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.bonus.sgzb</groupId>
 | 
						|
            <artifactId>sgzb-common-log</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- RuoYi Common Swagger -->
 | 
						|
        <!-- RuoYi Common Swagger -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.bonus.sgzb</groupId>
 | 
						|
            <artifactId>sgzb-common-swagger</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-configuration-processor</artifactId>
 | 
						|
            <optional>true</optional>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.projectlombok</groupId>
 | 
						|
            <artifactId>lombok</artifactId>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <maven.compiler.source>8</maven.compiler.source>
 | 
						|
        <maven.compiler.target>8</maven.compiler.target>
 | 
						|
    </properties>
 | 
						|
 | 
						|
</project> |