90 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			XML
		
	
	
	
<?xml version="1.0" encoding="UTF-8"?>
 | 
						|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
 | 
						|
         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>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <groupId>com.bd</groupId>
 | 
						|
        <artifactId>bd</artifactId>
 | 
						|
        <version>1.1.0-SNAPSHOT</version>
 | 
						|
    </parent>
 | 
						|
 | 
						|
    <artifactId>bd-business</artifactId>
 | 
						|
 | 
						|
    <packaging>pom</packaging>
 | 
						|
 | 
						|
    <description>
 | 
						|
        bd-business业务服务
 | 
						|
    </description>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
 | 
						|
        <!-- 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>
 | 
						|
 | 
						|
        <!-- SpringBoot Web -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-web</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!--spring cloud alibaba dubbo 依赖-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.alibaba.cloud</groupId>
 | 
						|
            <artifactId>spring-cloud-starter-dubbo</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- hzs common security-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.bd</groupId>
 | 
						|
            <artifactId>bd-common-security</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- hutool工具包-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>cn.hutool</groupId>
 | 
						|
            <artifactId>hutool-all</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- 切面逻辑处理 -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.bd</groupId>
 | 
						|
            <artifactId>bd-common-aop</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <modules>
 | 
						|
<!--        <module>bd-business-activity</module>-->
 | 
						|
        <module>bd-business-bonus</module>
 | 
						|
        <module>bd-business-member</module>
 | 
						|
        <module>bd-business-report</module>
 | 
						|
        <module>bd-business-sale</module>
 | 
						|
        <module>bd-business-system</module>
 | 
						|
        <module>bd-business-common</module>
 | 
						|
        <module>bd-business-scm</module>
 | 
						|
    </modules>
 | 
						|
 | 
						|
</project>
 |