|
@@ -26,337 +26,347 @@
|
|
|
<java.version>1.8</java.version>
|
|
|
<spring-boot.version>2.4.5</spring-boot.version>
|
|
|
<swagger.version>2.9.2</swagger.version>
|
|
|
- <maven-surefire-plugin.version> 2.22.0</maven-surefire-plugin.version>
|
|
|
+ <maven-surefire-plugin.version>2.22.0</maven-surefire-plugin.version>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
-
|
|
|
<dependencyManagement>
|
|
|
- <dependencies>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter</artifactId>
|
|
|
- <version>${spring-boot.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
- <version>${spring-boot.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
- <version>${spring-boot.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-test</artifactId>
|
|
|
- <version>${spring-boot.version}</version>
|
|
|
- <scope>test</scope>
|
|
|
- <exclusions>
|
|
|
- <exclusion>
|
|
|
- <groupId>org.junit.vintage</groupId>
|
|
|
- <artifactId>junit-vintage-engine</artifactId>
|
|
|
- </exclusion>
|
|
|
- </exclusions>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
|
|
- <version>${spring-boot.version}</version>
|
|
|
- <exclusions>
|
|
|
- <exclusion>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
- </exclusion>
|
|
|
- </exclusions>
|
|
|
- </dependency>
|
|
|
- <!--rabbitmq-->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-amqp</artifactId>
|
|
|
- <version>${spring-boot.version}</version>
|
|
|
- </dependency>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.junit.vintage</groupId>
|
|
|
+ <artifactId>junit-vintage-engine</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.session</groupId>
|
|
|
+ <artifactId>spring-session-core</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.session</groupId>
|
|
|
+ <artifactId>spring-session-data-redis</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <!--rabbitmq-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-amqp</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <!-- swagger -->
|
|
|
- <dependency>
|
|
|
- <groupId>io.springfox</groupId>
|
|
|
- <artifactId>springfox-swagger2</artifactId>
|
|
|
- <version>${swagger.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>io.springfox</groupId>
|
|
|
- <artifactId>springfox-swagger-ui</artifactId>
|
|
|
- <version>${swagger.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>io.swagger</groupId>
|
|
|
- <artifactId>swagger-annotations</artifactId>
|
|
|
- <version>1.5.22</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>io.swagger</groupId>
|
|
|
- <artifactId>swagger-models</artifactId>
|
|
|
- <version>1.5.22</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.hibernate.validator</groupId>
|
|
|
- <artifactId>hibernate-validator</artifactId>
|
|
|
- <version>6.0.17.Final</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
- <version>${spring-boot.version}</version>
|
|
|
- <scope>provided</scope>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.baomidou</groupId>
|
|
|
- <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
- <version>3.4.3.1</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.h2database</groupId>
|
|
|
- <artifactId>h2</artifactId>
|
|
|
- <version>1.4.200</version>
|
|
|
- <scope>runtime</scope>
|
|
|
- </dependency>
|
|
|
- <!-- 代码生成器 依赖 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-freemarker</artifactId>
|
|
|
- <version>${spring-boot.version}</version>
|
|
|
- </dependency>
|
|
|
- <!-- pagehelper 依赖 -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.github.pagehelper</groupId>
|
|
|
- <artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
- <version>1.3.1</version>
|
|
|
- </dependency>
|
|
|
- <!-- -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.github.jsqlparser</groupId>
|
|
|
- <artifactId>jsqlparser</artifactId>
|
|
|
- <version>2.1</version>
|
|
|
- </dependency>
|
|
|
+ <!-- swagger -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
+ <artifactId>springfox-swagger2</artifactId>
|
|
|
+ <version>${swagger.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
+ <artifactId>springfox-swagger-ui</artifactId>
|
|
|
+ <version>${swagger.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
+ <artifactId>swagger-annotations</artifactId>
|
|
|
+ <version>1.5.22</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
+ <artifactId>swagger-models</artifactId>
|
|
|
+ <version>1.5.22</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.hibernate.validator</groupId>
|
|
|
+ <artifactId>hibernate-validator</artifactId>
|
|
|
+ <version>6.0.17.Final</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ <scope>provided</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
+ <version>3.4.3.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.h2database</groupId>
|
|
|
+ <artifactId>h2</artifactId>
|
|
|
+ <version>1.4.200</version>
|
|
|
+ <scope>runtime</scope>
|
|
|
+ </dependency>
|
|
|
+ <!-- 代码生成器 依赖 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-freemarker</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- pagehelper 依赖 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.pagehelper</groupId>
|
|
|
+ <artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
+ <version>1.3.1</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.jsqlparser</groupId>
|
|
|
+ <artifactId>jsqlparser</artifactId>
|
|
|
+ <version>2.1</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <dependency>
|
|
|
- <groupId>org.aspectj</groupId>
|
|
|
- <artifactId>aspectjweaver</artifactId>
|
|
|
- <version>1.9.3</version>
|
|
|
- </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.aspectj</groupId>
|
|
|
+ <artifactId>aspectjweaver</artifactId>
|
|
|
+ <version>1.9.3</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <!-- mysql -->
|
|
|
- <dependency>
|
|
|
- <groupId>mysql</groupId>
|
|
|
- <artifactId>mysql-connector-java</artifactId>
|
|
|
- <version>8.0.15</version>
|
|
|
- <scope>runtime</scope>
|
|
|
- </dependency>
|
|
|
- <!-- druid -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
- <artifactId>druid</artifactId>
|
|
|
- <version>1.0.28</version>
|
|
|
- </dependency>
|
|
|
+ <!-- mysql -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ <version>8.0.15</version>
|
|
|
+ <scope>runtime</scope>
|
|
|
+ </dependency>
|
|
|
+ <!-- druid -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>druid</artifactId>
|
|
|
+ <version>1.0.28</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <dependency>
|
|
|
- <groupId>org.projectlombok</groupId>
|
|
|
- <artifactId>lombok</artifactId>
|
|
|
- <version>1.18.20</version>
|
|
|
- </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ <version>1.18.20</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <!-- fastjson -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
- <artifactId>fastjson</artifactId>
|
|
|
- <version>1.2.67</version>
|
|
|
- </dependency>
|
|
|
- <!--Jackson required包-->
|
|
|
- <dependency>
|
|
|
- <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
- <artifactId>jackson-core</artifactId>
|
|
|
- <version>2.12.4</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
- <artifactId>jackson-databind</artifactId>
|
|
|
- <version>2.12.4</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
- <artifactId>jackson-annotations</artifactId>
|
|
|
- <version>2.12.4</version>
|
|
|
- </dependency>
|
|
|
+ <!-- fastjson -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>1.2.67</version>
|
|
|
+ </dependency>
|
|
|
+ <!--Jackson required包-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
+ <artifactId>jackson-core</artifactId>
|
|
|
+ <version>2.12.4</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
+ <artifactId>jackson-databind</artifactId>
|
|
|
+ <version>2.12.4</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
+ <artifactId>jackson-annotations</artifactId>
|
|
|
+ <version>2.12.4</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <dependency>
|
|
|
- <groupId>com.google.protobuf</groupId>
|
|
|
- <artifactId>protobuf-java</artifactId>
|
|
|
- <version>3.2.0</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.googlecode.protobuf-java-format</groupId>
|
|
|
- <artifactId>protobuf-java-format</artifactId>
|
|
|
- <version>1.4</version>
|
|
|
- </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.google.protobuf</groupId>
|
|
|
+ <artifactId>protobuf-java</artifactId>
|
|
|
+ <version>3.2.0</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.googlecode.protobuf-java-format</groupId>
|
|
|
+ <artifactId>protobuf-java-format</artifactId>
|
|
|
+ <version>1.4</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <dependency>
|
|
|
- <groupId>org.codehaus.jackson</groupId>
|
|
|
- <artifactId>jackson-mapper-asl</artifactId>
|
|
|
- <version>1.9.11</version>
|
|
|
- </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.codehaus.jackson</groupId>
|
|
|
+ <artifactId>jackson-mapper-asl</artifactId>
|
|
|
+ <version>1.9.11</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <dependency>
|
|
|
- <groupId>org.codehaus.jackson</groupId>
|
|
|
- <artifactId>jackson-smile</artifactId>
|
|
|
- <version>1.9.12</version>
|
|
|
- </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.codehaus.jackson</groupId>
|
|
|
+ <artifactId>jackson-smile</artifactId>
|
|
|
+ <version>1.9.12</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <!-- https://mvnrepository.com/artifact/com.aliyun/aliyun-java-sdk-ossadmin -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.aliyun</groupId>
|
|
|
- <artifactId>aliyun-java-sdk-ossadmin</artifactId>
|
|
|
- <version>2.0.0</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.aliyun.oss</groupId>
|
|
|
- <artifactId>aliyun-sdk-oss</artifactId>
|
|
|
- <version>2.8.3</version>
|
|
|
- </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.aliyun/aliyun-java-sdk-ossadmin -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aliyun</groupId>
|
|
|
+ <artifactId>aliyun-java-sdk-ossadmin</artifactId>
|
|
|
+ <version>2.0.0</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aliyun.oss</groupId>
|
|
|
+ <artifactId>aliyun-sdk-oss</artifactId>
|
|
|
+ <version>2.8.3</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.httpcomponents</groupId>
|
|
|
- <artifactId>httpclient</artifactId>
|
|
|
- <version>4.5.3</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.httpcomponents</groupId>
|
|
|
- <artifactId>httpmime</artifactId>
|
|
|
- <version>4.5.3</version>
|
|
|
- </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.httpcomponents</groupId>
|
|
|
+ <artifactId>httpclient</artifactId>
|
|
|
+ <version>4.5.3</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.httpcomponents</groupId>
|
|
|
+ <artifactId>httpmime</artifactId>
|
|
|
+ <version>4.5.3</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <dependency>
|
|
|
- <groupId>com.github.xiaoymin</groupId>
|
|
|
- <artifactId>knife4j-spring-boot-starter</artifactId>
|
|
|
- <version>2.0.3</version>
|
|
|
- </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.xiaoymin</groupId>
|
|
|
+ <artifactId>knife4j-spring-boot-starter</artifactId>
|
|
|
+ <version>2.0.3</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.squareup.okhttp3</groupId>
|
|
|
- <artifactId>okhttp</artifactId>
|
|
|
- <version>4.0.0</version>
|
|
|
- </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.squareup.okhttp3</groupId>
|
|
|
+ <artifactId>okhttp</artifactId>
|
|
|
+ <version>4.0.0</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.ant</groupId>
|
|
|
- <artifactId>ant</artifactId>
|
|
|
- <version>1.8.2</version>
|
|
|
- </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.ant</groupId>
|
|
|
+ <artifactId>ant</artifactId>
|
|
|
+ <version>1.8.2</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <!-- 解压rar -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.github.junrar</groupId>
|
|
|
- <artifactId>junrar</artifactId>
|
|
|
- <version>3.0.0</version>
|
|
|
- </dependency>
|
|
|
+ <!-- 解压rar -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.junrar</groupId>
|
|
|
+ <artifactId>junrar</artifactId>
|
|
|
+ <version>3.0.0</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.poi</groupId>
|
|
|
- <artifactId>poi-ooxml</artifactId>
|
|
|
- <version>3.8</version>
|
|
|
- </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi-ooxml</artifactId>
|
|
|
+ <version>3.8</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <dependency>
|
|
|
- <groupId>net.sf.json-lib</groupId>
|
|
|
- <artifactId>json-lib</artifactId>
|
|
|
- <version>2.4</version>
|
|
|
- <classifier>jdk15</classifier>
|
|
|
- </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>net.sf.json-lib</groupId>
|
|
|
+ <artifactId>json-lib</artifactId>
|
|
|
+ <version>2.4</version>
|
|
|
+ <classifier>jdk15</classifier>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <dependency>
|
|
|
- <groupId>cn.hutool</groupId>
|
|
|
- <artifactId>hutool-all</artifactId>
|
|
|
- <version>5.7.7</version>
|
|
|
- </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
+ <artifactId>hutool-all</artifactId>
|
|
|
+ <version>5.7.7</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <!--lettuce-->
|
|
|
- <!--redis 相关 依赖-->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
- <version>${spring-boot.version}</version>
|
|
|
- </dependency>
|
|
|
+ <!--lettuce-->
|
|
|
+ <!--redis 相关 依赖-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <!-- lettuce pool 缓存连接池 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.commons</groupId>
|
|
|
- <artifactId>commons-pool2</artifactId>
|
|
|
- <version>2.4.2</version>
|
|
|
- </dependency>
|
|
|
+ <!-- lettuce pool 缓存连接池 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
+ <artifactId>commons-pool2</artifactId>
|
|
|
+ <version>2.4.2</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <dependency>
|
|
|
- <groupId>junit</groupId>
|
|
|
- <artifactId>junit</artifactId>
|
|
|
- <version>4.12</version>
|
|
|
- <scope>test</scope>
|
|
|
- </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>junit</groupId>
|
|
|
+ <artifactId>junit</artifactId>
|
|
|
+ <version>4.12</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
|
|
|
|
|
|
- <dependency>
|
|
|
- <groupId>com.github.t3hnar</groupId>
|
|
|
- <artifactId>scala-bcrypt_2.10</artifactId>
|
|
|
- <version>2.3</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.shiro</groupId>
|
|
|
- <artifactId>shiro-spring</artifactId>
|
|
|
- <version>1.4.0</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.auth0</groupId>
|
|
|
- <artifactId>java-jwt</artifactId>
|
|
|
- <version>3.7.0</version>
|
|
|
- </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.t3hnar</groupId>
|
|
|
+ <artifactId>scala-bcrypt_2.10</artifactId>
|
|
|
+ <version>2.3</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
+ <artifactId>shiro-spring</artifactId>
|
|
|
+ <version>1.4.0</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.auth0</groupId>
|
|
|
+ <artifactId>java-jwt</artifactId>
|
|
|
+ <version>3.7.0</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <!-- 缓存 -->
|
|
|
- <dependency>
|
|
|
- <groupId>net.oschina.j2cache</groupId>
|
|
|
- <artifactId>j2cache-spring-boot2-starter</artifactId>
|
|
|
- <version>2.8.0-release</version>
|
|
|
- <!--排除这个slf4j-log4j12-->
|
|
|
- <exclusions>
|
|
|
- <exclusion>
|
|
|
- <groupId>org.slf4j</groupId>
|
|
|
- <artifactId>slf4j-simple</artifactId>
|
|
|
- </exclusion>
|
|
|
- </exclusions>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>net.oschina.j2cache</groupId>
|
|
|
- <artifactId>j2cache-core</artifactId>
|
|
|
- <version>2.8.2-release</version>
|
|
|
- <!--排除这个slf4j-log4j12-->
|
|
|
- <exclusions>
|
|
|
- <exclusion>
|
|
|
- <groupId>org.slf4j</groupId>
|
|
|
- <artifactId>slf4j-simple</artifactId>
|
|
|
- </exclusion>
|
|
|
- </exclusions>
|
|
|
- </dependency>
|
|
|
- <dependency><!-- Ehcache 3.x //-->
|
|
|
- <groupId>org.ehcache</groupId>
|
|
|
- <artifactId>ehcache</artifactId>
|
|
|
- <version>3.4.0</version>
|
|
|
- </dependency>
|
|
|
- <!-- 钉钉告警 -->
|
|
|
- <!-- <dependency>-->
|
|
|
- <!-- <groupId>com.aliyun</groupId>-->
|
|
|
- <!-- <artifactId>alibaba-dingtalk-service-sdk</artifactId>-->
|
|
|
- <!-- <version>1.0.1</version>-->
|
|
|
- <!-- </dependency>-->
|
|
|
- </dependencies>
|
|
|
+ <!-- 缓存 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>net.oschina.j2cache</groupId>
|
|
|
+ <artifactId>j2cache-spring-boot2-starter</artifactId>
|
|
|
+ <version>2.8.0-release</version>
|
|
|
+ <!--排除这个slf4j-log4j12-->
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ <artifactId>slf4j-simple</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>net.oschina.j2cache</groupId>
|
|
|
+ <artifactId>j2cache-core</artifactId>
|
|
|
+ <version>2.8.2-release</version>
|
|
|
+ <!--排除这个slf4j-log4j12-->
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ <artifactId>slf4j-simple</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <dependency><!-- Ehcache 3.x //-->
|
|
|
+ <groupId>org.ehcache</groupId>
|
|
|
+ <artifactId>ehcache</artifactId>
|
|
|
+ <version>3.4.0</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- 钉钉告警 -->
|
|
|
+ <!-- <dependency>-->
|
|
|
+ <!-- <groupId>com.aliyun</groupId>-->
|
|
|
+ <!-- <artifactId>alibaba-dingtalk-service-sdk</artifactId>-->
|
|
|
+ <!-- <version>1.0.1</version>-->
|
|
|
+ <!-- </dependency>-->
|
|
|
+ </dependencies>
|
|
|
</dependencyManagement>
|
|
|
<build>
|
|
|
<plugins>
|