426 lines
		
	
	
		
			16 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			426 lines
		
	
	
		
			16 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.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-properties-migrator</artifactId>
 | |
|             <scope>runtime</scope>
 | |
|         </dependency>
 | |
|         <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-quartz</artifactId>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>slf4j-api</artifactId>
 | |
|                     <groupId>org.slf4j</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-web</artifactId>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>log4j-to-slf4j</artifactId>
 | |
|                     <groupId>org.apache.logging.log4j</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </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>
 | |
|                 <exclusion>
 | |
|                     <artifactId>slf4j-api</artifactId>
 | |
|                     <groupId>org.slf4j</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>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>slf4j-api</artifactId>
 | |
|                     <groupId>org.slf4j</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-pool2</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>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>slf4j-api</artifactId>
 | |
|                     <groupId>org.slf4j</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </dependency>
 | |
|         <!-- Mysql Connector -->
 | |
|         <dependency>
 | |
|             <groupId>mysql</groupId>
 | |
|             <artifactId>mysql-connector-java</artifactId>
 | |
|             <version>8.0.29</version>
 | |
|         </dependency>
 | |
|         <!-- Redis-->
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-data-redis</artifactId>
 | |
|         </dependency>
 | |
|         <!-- https://mvnrepository.com/artifact/org.redisson/redisson-spring-boot-starter -->
 | |
|         <dependency>
 | |
|             <groupId>org.redisson</groupId>
 | |
|             <artifactId>redisson</artifactId>
 | |
|             <version>${redisson}</version>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>slf4j-api</artifactId>
 | |
|                     <groupId>org.slf4j</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>com.github.xiaoymin</groupId>
 | |
|             <artifactId>knife4j-spring-boot-starter</artifactId>
 | |
|             <version>${knife4j.version}</version>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>slf4j-api</artifactId>
 | |
|                     <groupId>org.slf4j</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </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>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>slf4j-api</artifactId>
 | |
|                     <groupId>org.slf4j</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </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>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>org.jacoco.agent</artifactId>
 | |
|                     <groupId>org.jacoco</groupId>
 | |
|                 </exclusion>
 | |
|                 <exclusion>
 | |
|                     <artifactId>bcprov-jdk15on</artifactId>
 | |
|                     <groupId>org.bouncycastle</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </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>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>fastjson</artifactId>
 | |
|                     <groupId>com.alibaba</groupId>
 | |
|                 </exclusion>
 | |
|                 <exclusion>
 | |
|                     <artifactId>slf4j-api</artifactId>
 | |
|                     <groupId>org.slf4j</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </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>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>slf4j-api</artifactId>
 | |
|                     <groupId>org.slf4j</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </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>
 | |
|                 <exclusion>
 | |
|                     <artifactId>commons-collections4</artifactId>
 | |
|                     <groupId>org.apache.commons</groupId>
 | |
|                 </exclusion>
 | |
|                 <exclusion>
 | |
|                     <artifactId>antlr4-runtime</artifactId>
 | |
|                     <groupId>org.antlr</groupId>
 | |
|                 </exclusion>
 | |
|                 <exclusion>
 | |
|                     <artifactId>slf4j-api</artifactId>
 | |
|                     <groupId>org.slf4j</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.apache.shardingsphere</groupId>
 | |
|             <artifactId>sharding-jdbc-spring-namespace</artifactId>
 | |
|             <version>${sharding-jdbc-version}</version>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>slf4j-api</artifactId>
 | |
|                     <groupId>org.slf4j</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </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>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>bcprov-jdk15on</artifactId>
 | |
|                     <groupId>org.bouncycastle</groupId>
 | |
|                 </exclusion>
 | |
|                 <exclusion>
 | |
|                     <artifactId>commons-logging</artifactId>
 | |
|                     <groupId>commons-logging</groupId>
 | |
|                 </exclusion>
 | |
|                 <exclusion>
 | |
|                     <artifactId>xml-apis</artifactId>
 | |
|                     <groupId>xml-apis</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </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>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>
 | |
|         <!-- https://mvnrepository.com/artifact/com.googlecode.owasp-java-html-sanitizer/owasp-java-html-sanitizer -->
 | |
|         <dependency>
 | |
|             <groupId>com.googlecode.owasp-java-html-sanitizer</groupId>
 | |
|             <artifactId>owasp-java-html-sanitizer</artifactId>
 | |
|             <version>${owasp-java-html-sanitizer}</version>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>guava</artifactId>
 | |
|                     <groupId>com.google.guava</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </dependency>
 | |
| 
 | |
|     </dependencies>
 | |
| 
 | |
| 
 | |
| </project> | 
