You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					120 lines
				
				3.7 KiB
			
		
		
			
		
	
	
					120 lines
				
				3.7 KiB
			| 
								 
											3 years ago
										 
									 | 
							
								<?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.hc</groupId>
							 | 
						||
| 
								 | 
							
								        <artifactId>jiaotong-education</artifactId>
							 | 
						||
| 
								 | 
							
								        <version>1.0-SNAPSHOT</version>
							 | 
						||
| 
								 | 
							
								    </parent>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <artifactId>core</artifactId>
							 | 
						||
| 
								 | 
							
								    <version>0.0.1-SNAPSHOT</version>
							 | 
						||
| 
								 | 
							
								    <name>core</name>
							 | 
						||
| 
								 | 
							
								    <description>Demo project for Spring Boot</description>
							 | 
						||
| 
								 | 
							
								    <packaging>jar</packaging>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <properties>
							 | 
						||
| 
								 | 
							
								        <java.version>11</java.version>
							 | 
						||
| 
								 | 
							
								    </properties>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <dependencies>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>org.mybatis.spring.boot</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>mybatis-spring-boot-starter</artifactId>
							 | 
						||
| 
								 | 
							
								            <version>${mybatis.version}</version>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>tk.mybatis</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>mapper</artifactId>
							 | 
						||
| 
								 | 
							
								            <version>${tk.version}</version>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>org.springframework.boot</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>spring-boot-starter-data-redis</artifactId>
							 | 
						||
| 
								 | 
							
								            <exclusions>
							 | 
						||
| 
								 | 
							
								                <exclusion>
							 | 
						||
| 
								 | 
							
								                    <groupId>io.lettuce</groupId>
							 | 
						||
| 
								 | 
							
								                    <artifactId>lettuce-core</artifactId>
							 | 
						||
| 
								 | 
							
								                </exclusion>
							 | 
						||
| 
								 | 
							
								            </exclusions>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>redis.clients</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>jedis</artifactId>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>org.apache.commons</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>commons-lang3</artifactId>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>org.apache.commons</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>commons-pool2</artifactId>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <!--SpringBoot参数校验-->
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>org.springframework.boot</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>spring-boot-starter-validation</artifactId>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>com.qiniu</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>qiniu-java-sdk</artifactId>
							 | 
						||
| 
								 | 
							
								            <version>${qiniu.version}</version>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <!-- JWT -->
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>com.auth0</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>java-jwt</artifactId>
							 | 
						||
| 
								 | 
							
								            <version>${auth0.jwt.version}</version>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>org.apache.httpcomponents</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>httpcore</artifactId>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>org.apache.httpcomponents</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>httpclient</artifactId>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <!-- https://mvnrepository.com/artifact/org.jdom/jdom -->
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>org.jdom</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>jdom</artifactId>
							 | 
						||
| 
								 | 
							
								            <version>2.0.2</version>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <!-- https://mvnrepository.com/artifact/commons-httpclient/commons-httpclient -->
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>commons-httpclient</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>commons-httpclient</artifactId>
							 | 
						||
| 
								 | 
							
								            <version>3.1</version>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>com.alipay.sdk</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>alipay-sdk-java</artifactId>
							 | 
						||
| 
								 | 
							
								            <version>${alipay.version}</version>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>com.github.binarywang</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>weixin-java-miniapp</artifactId>
							 | 
						||
| 
								 | 
							
								            <version>${weixin.miniapp.version}</version>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    </dependencies>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								</project>
							 |