200 lines
		
	
	
		
			6.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			200 lines
		
	
	
		
			6.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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
 | 
						|
    <modelVersion>4.0.0</modelVersion>
 | 
						|
    <parent>
 | 
						|
        <groupId>com.tuling</groupId>
 | 
						|
        <artifactId>tulingmall-sk</artifactId>
 | 
						|
        <version>0.0.5</version>
 | 
						|
    </parent>
 | 
						|
    <artifactId>tulingmall-sk-cart</artifactId>
 | 
						|
    <name>tulingmall-sk-cart</name>
 | 
						|
    <description>秒杀购物车服务</description>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <java.version>1.8</java.version>
 | 
						|
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 | 
						|
    </properties>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.tuling</groupId>
 | 
						|
            <artifactId>tulingmall-common</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.tuling</groupId>
 | 
						|
            <artifactId>tulingmall-redis-multi</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.baomidou</groupId>
 | 
						|
            <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
 | 
						|
            <exclusions>
 | 
						|
                <exclusion>
 | 
						|
                    <groupId>org.springframework.boot</groupId>
 | 
						|
                    <artifactId>spring-boot-starter-jdbc</artifactId>
 | 
						|
                </exclusion>
 | 
						|
            </exclusions>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
<!--        <dependency>
 | 
						|
            <groupId>com.tuling</groupId>
 | 
						|
            <artifactId>tulingmall-mbg</artifactId>
 | 
						|
        </dependency>-->
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.alibaba.cloud</groupId>
 | 
						|
            <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.alibaba.cloud</groupId>
 | 
						|
            <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-actuator</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.cloud</groupId>
 | 
						|
            <artifactId>spring-cloud-starter-openfeign</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- 加入rocketmq -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.rocketmq</groupId>
 | 
						|
            <artifactId>rocketmq-spring-boot-starter</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!--redis依赖配置-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-data-redis</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.commons</groupId>
 | 
						|
            <artifactId>commons-pool2</artifactId>
 | 
						|
            <version>2.4.3</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- zookeeper依赖 -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.zookeeper</groupId>
 | 
						|
            <artifactId>zookeeper</artifactId>
 | 
						|
            <version>3.4.8</version>
 | 
						|
            <exclusions>
 | 
						|
                <exclusion>
 | 
						|
                    <groupId>log4j</groupId>
 | 
						|
                    <artifactId>log4j</artifactId>
 | 
						|
                </exclusion>
 | 
						|
                <exclusion>
 | 
						|
                    <groupId>org.slf4j</groupId>
 | 
						|
                    <artifactId>slf4j-log4j12</artifactId>
 | 
						|
                </exclusion>
 | 
						|
            </exclusions>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.curator</groupId>
 | 
						|
            <artifactId>curator-recipes</artifactId>
 | 
						|
            <version>2.9.1</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!--spring-mvc的依赖-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-web</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <!--加入redisson-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.redisson</groupId>
 | 
						|
            <artifactId>redisson</artifactId>
 | 
						|
            <version>3.6.5</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!--HappyCaptcha-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.ramostear</groupId>
 | 
						|
            <artifactId>Happy-Captcha</artifactId>
 | 
						|
            <version>1.0.1</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- 本地缓存 -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.github.ben-manes.caffeine</groupId>
 | 
						|
            <artifactId>caffeine</artifactId>
 | 
						|
            <version>2.9.3</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-test</artifactId>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>junit</groupId>
 | 
						|
            <artifactId>junit</artifactId>
 | 
						|
            <version>4.13.2</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework</groupId>
 | 
						|
            <artifactId>spring-test</artifactId>
 | 
						|
            <version>5.2.8.RELEASE</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!--<dependency>
 | 
						|
            <groupId>com.alibaba.cloud</groupId>
 | 
						|
            <artifactId>spring-cloud-starter-alibaba-seata</artifactId>
 | 
						|
            <exclusions>
 | 
						|
                <exclusion>
 | 
						|
                    <groupId>io.seata</groupId>
 | 
						|
                    <artifactId>seata-all</artifactId>
 | 
						|
                </exclusion>
 | 
						|
            </exclusions>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>io.seata</groupId>
 | 
						|
            <artifactId>seata-all</artifactId>
 | 
						|
            <version>1.0.0</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>io.seata</groupId>
 | 
						|
            <artifactId>seata-spring-boot-starter</artifactId>
 | 
						|
            <version>1.0.0</version>
 | 
						|
        </dependency>-->
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>mysql</groupId>
 | 
						|
            <artifactId>mysql-connector-java</artifactId>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <build>
 | 
						|
        <plugins>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.springframework.boot</groupId>
 | 
						|
                <artifactId>spring-boot-maven-plugin</artifactId>
 | 
						|
                <version>2.3.2.RELEASE</version>
 | 
						|
                <executions>
 | 
						|
                    <execution>
 | 
						|
                        <goals>
 | 
						|
                            <goal>repackage</goal>
 | 
						|
                        </goals>
 | 
						|
                    </execution>
 | 
						|
                </executions>
 | 
						|
            </plugin>
 | 
						|
        </plugins>
 | 
						|
    </build>
 | 
						|
 | 
						|
</project>
 |