|
@@ -0,0 +1,110 @@
|
|
|
|
+<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>
|
|
|
|
+
|
|
|
|
+ <groupId>com.futu.goose</groupId>
|
|
|
|
+ <artifactId>BigGoose</artifactId>
|
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
+
|
|
|
|
+ <name>BigGoose</name>
|
|
|
|
+ <url>http://maven.apache.org</url>
|
|
|
|
+
|
|
|
|
+ <properties>
|
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
+ </properties>
|
|
|
|
+
|
|
|
|
+ <parent>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
+ <version>2.3.2.RELEASE</version>
|
|
|
|
+ <!-- 使用合适的版本 -->
|
|
|
|
+ </parent>
|
|
|
|
+ <dependencies>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
+ <version>2.3.2.RELEASE</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
+ <version>2.3.2.RELEASE</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- mysql -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>mysql</groupId>
|
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
|
+ <version>8.0.33</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- mybatis-plus -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
+ <version>3.5.4</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- lombok -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
|
+ <version>1.18.30</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
+ <version>2.3.2.RELEASE</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- Hutool工具包 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
|
+ <artifactId>hutool-all</artifactId>
|
|
|
|
+ <version>5.8.16</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- JWT -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>io.jsonwebtoken</groupId>
|
|
|
|
+ <artifactId>jjwt</artifactId>
|
|
|
|
+ <version>0.9.1</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- Spring Boot Starter Data Redis -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
+ <version>2.3.2.RELEASE</version> <!-- 根据你的Spring Boot版本调整 -->
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>redis.clients</groupId>
|
|
|
|
+ <artifactId>jedis</artifactId>
|
|
|
|
+ <version>2.9.0</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- redisson分布式锁-->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.redisson</groupId>
|
|
|
|
+ <artifactId>redisson</artifactId>
|
|
|
|
+ <version>3.14.1</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
|
+ <version>1.2.83</version> <!-- JDK8兼容版本 -->
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
+ <artifactId>commons-lang3</artifactId>
|
|
|
|
+ <version>3.17.0</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ </dependencies>
|
|
|
|
+ <build>
|
|
|
|
+ <plugins>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
+ <configuration>
|
|
|
|
+ <source>8</source>
|
|
|
|
+ <target>8</target>
|
|
|
|
+ </configuration>
|
|
|
|
+ </plugin>
|
|
|
|
+ </plugins>
|
|
|
|
+ </build>
|
|
|
|
+</project>
|