308 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			308 lines
		
	
	
		
			11 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>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <groupId>cn.lili</groupId>
 | 
						|
        <artifactId>lili-shop-parent</artifactId>
 | 
						|
        <version>${revision}</version>
 | 
						|
        <relativePath>../pom.xml</relativePath>
 | 
						|
    </parent>
 | 
						|
 | 
						|
    <artifactId>framework</artifactId>
 | 
						|
    <packaging>jar</packaging>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.junit.vintage</groupId>
 | 
						|
            <artifactId>junit-vintage-engine</artifactId>
 | 
						|
            <scope>test</scope>
 | 
						|
            <exclusions>
 | 
						|
                <exclusion>
 | 
						|
                    <groupId>org.hamcrest</groupId>
 | 
						|
                    <artifactId>hamcrest-core</artifactId>
 | 
						|
                </exclusion>
 | 
						|
            </exclusions>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-web</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-security</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-validation</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-configuration-processor</artifactId>
 | 
						|
            <optional>true</optional>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-aop</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
 | 
						|
            <exclusions>
 | 
						|
                <exclusion>
 | 
						|
                    <artifactId>HdrHistogram</artifactId>
 | 
						|
                    <groupId>org.hdrhistogram</groupId>
 | 
						|
                </exclusion>
 | 
						|
            </exclusions>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework</groupId>
 | 
						|
            <artifactId>spring-context-support</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.integration</groupId>
 | 
						|
            <artifactId>spring-integration-redis</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.commons</groupId>
 | 
						|
            <artifactId>commons-pool2</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <!--mongodb依赖配置-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-data-mongodb</artifactId>
 | 
						|
        </dependency>
 | 
						|
<!--        <!– Websocket –>-->
 | 
						|
<!--        <dependency>-->
 | 
						|
<!--            <groupId>org.springframework.boot</groupId>-->
 | 
						|
<!--            <artifactId>spring-boot-starter-websocket</artifactId>-->
 | 
						|
<!--        </dependency>-->
 | 
						|
        <!-- MybatisPlus -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.baomidou</groupId>
 | 
						|
            <artifactId>mybatis-plus-boot-starter</artifactId>
 | 
						|
            <version>${mybatis-plus-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.mybatis.spring.boot</groupId>
 | 
						|
            <artifactId>mybatis-spring-boot-starter-test</artifactId>
 | 
						|
            <version>1.3.2</version>
 | 
						|
        </dependency>
 | 
						|
        <!-- Mysql Connector -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>mysql</groupId>
 | 
						|
            <artifactId>mysql-connector-java</artifactId>
 | 
						|
            <version>${mysql-connector-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <!-- Redis-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-data-redis</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <!-- Swagger API文档 -->
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.github.xiaoymin</groupId>
 | 
						|
            <artifactId>knife4j-spring-boot-starter</artifactId>
 | 
						|
            <version>${knife4j.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <!-- Hutool工具包 -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>cn.hutool</groupId>
 | 
						|
            <artifactId>hutool-all</artifactId>
 | 
						|
            <version>${Hutool-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>io.github.biezhi</groupId>
 | 
						|
            <artifactId>TinyPinyin</artifactId>
 | 
						|
            <version>${TinyPinyin-verions}</version>
 | 
						|
        </dependency>
 | 
						|
        <!-- Lombok -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.projectlombok</groupId>
 | 
						|
            <artifactId>lombok</artifactId>
 | 
						|
            <version>${lombok-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <!-- Jasypt加密 -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.github.ulisesbocchio</groupId>
 | 
						|
            <artifactId>jasypt-spring-boot-starter</artifactId>
 | 
						|
            <version>${jasypt-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <!-- 阿里云核心包-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.aliyun</groupId>
 | 
						|
            <artifactId>aliyun-java-sdk-core</artifactId>
 | 
						|
            <version>${aliyun-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <!-- 阿里云OSS -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.aliyun.oss</groupId>
 | 
						|
            <artifactId>aliyun-sdk-oss</artifactId>
 | 
						|
            <version>${aliyun-sdk-oss-version}</version>
 | 
						|
            <exclusions>
 | 
						|
                <exclusion>
 | 
						|
                    <artifactId>aliyun-java-sdk-core</artifactId>
 | 
						|
                    <groupId>com.aliyun</groupId>
 | 
						|
                </exclusion>
 | 
						|
            </exclusions>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.aliyun</groupId>
 | 
						|
            <artifactId>dysmsapi20170525</artifactId>
 | 
						|
            <version>${aliyun-sdk-dysms-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <!--脚本编程-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.codehaus.groovy</groupId>
 | 
						|
            <artifactId>groovy</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <!-- rocketmq-spring-boot-starter -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.rocketmq</groupId>
 | 
						|
            <artifactId>rocketmq-spring-boot-starter</artifactId>
 | 
						|
            <version>${rocketmq-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <!--   token加密 -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>io.jsonwebtoken</groupId>
 | 
						|
            <artifactId>jjwt-api</artifactId>
 | 
						|
            <version>${jwt-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>io.jsonwebtoken</groupId>
 | 
						|
            <artifactId>jjwt-impl</artifactId>
 | 
						|
            <version>${jwt-version}</version>
 | 
						|
            <scope>runtime</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>io.jsonwebtoken</groupId>
 | 
						|
            <artifactId>jjwt-jackson</artifactId>
 | 
						|
            <version>${jwt-version}</version>
 | 
						|
            <scope>runtime</scope>
 | 
						|
        </dependency>
 | 
						|
        <!--test-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-test</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- 解决版本提示问题 -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.antlr</groupId>
 | 
						|
            <artifactId>antlr4</artifactId>
 | 
						|
            <version>${antlr4-version}</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.commons</groupId>
 | 
						|
            <artifactId>commons-lang3</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
 | 
						|
        <!--sharding jdbc springboot-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.shardingsphere</groupId>
 | 
						|
            <artifactId>sharding-jdbc-spring-boot-starter</artifactId>
 | 
						|
            <version>${sharding-jdbc-version}</version>
 | 
						|
            <exclusions>
 | 
						|
                <exclusion>
 | 
						|
                    <artifactId>groovy</artifactId>
 | 
						|
                    <groupId>org.codehaus.groovy</groupId>
 | 
						|
                </exclusion>
 | 
						|
            </exclusions>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.shardingsphere</groupId>
 | 
						|
            <artifactId>sharding-jdbc-spring-namespace</artifactId>
 | 
						|
            <version>${sharding-jdbc-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <!--druid-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.alibaba</groupId>
 | 
						|
            <artifactId>druid</artifactId>
 | 
						|
            <version>${druid-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.xkcoding.http</groupId>
 | 
						|
            <artifactId>simple-http</artifactId>
 | 
						|
            <version>${simple-http-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.antlr</groupId>
 | 
						|
            <artifactId>antlr4-runtime</artifactId>
 | 
						|
            <version>${antlr4-runtime-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.alipay.sdk</groupId>
 | 
						|
            <artifactId>alipay-sdk-java</artifactId>
 | 
						|
            <version>${alipay-sdk-version}</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!--用户端类型处理-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>eu.bitwalker</groupId>
 | 
						|
            <artifactId>UserAgentUtils</artifactId>
 | 
						|
            <version>${userAgentUtils}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.poi</groupId>
 | 
						|
            <artifactId>poi</artifactId>
 | 
						|
            <version>${poi-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.poi</groupId>
 | 
						|
            <artifactId>poi-ooxml</artifactId>
 | 
						|
            <version>${poi-ooxml-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <!--集成logstash-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>net.logstash.logback</groupId>
 | 
						|
            <artifactId>logstash-logback-encoder</artifactId>
 | 
						|
            <version>${logstash-logback-encoder}</version>
 | 
						|
        </dependency>
 | 
						|
<!--        <dependency>-->
 | 
						|
<!--            <groupId>javax.interceptor</groupId>-->
 | 
						|
<!--            <artifactId>javax.interceptor-api</artifactId>-->
 | 
						|
<!--            <version>${interceptor-api}</version>-->
 | 
						|
<!--        </dependency>-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>de.codecentric</groupId>
 | 
						|
            <artifactId>spring-boot-admin-starter-client</artifactId>
 | 
						|
            <version>${de.codecentric}</version>
 | 
						|
        </dependency>
 | 
						|
        <!-- 开源多维码生成工具 -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.google.zxing</groupId>
 | 
						|
            <artifactId>core</artifactId>
 | 
						|
            <version>${zxing}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.google.zxing</groupId>
 | 
						|
            <artifactId>javase</artifactId>
 | 
						|
            <version>${zxing}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.slf4j</groupId>
 | 
						|
            <artifactId>slf4j-api</artifactId>
 | 
						|
            <version>${slf4j-api}</version>
 | 
						|
        </dependency>
 | 
						|
        <!-- 开源多维码生成工具 -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.github.xkzhangsan</groupId>
 | 
						|
            <artifactId>xk-time</artifactId>
 | 
						|
            <version>${xk-time}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.commons</groupId>
 | 
						|
            <artifactId>commons-text</artifactId>
 | 
						|
            <version>${commons-text}</version>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
 | 
						|
</project> |