2020-10-16 21:53:44 +08:00
|
|
|
<?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">
|
2020-04-29 21:15:25 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-10-16 21:53:44 +08:00
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2021-02-03 16:00:27 +08:00
|
|
|
<version>2.4.2</version>
|
2020-10-16 21:53:44 +08:00
|
|
|
<relativePath/>
|
|
|
|
</parent>
|
2020-04-29 21:15:25 +08:00
|
|
|
<groupId>com.rebuild</groupId>
|
|
|
|
<artifactId>rebuild</artifactId>
|
2021-04-17 15:07:36 +08:00
|
|
|
<version>2.4.0-dev</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
<name>rebuild</name>
|
2020-10-16 21:53:44 +08:00
|
|
|
<description>RB V2 use SpringBoot</description>
|
2020-10-16 23:28:57 +08:00
|
|
|
<!-- UNCOMMENT USE TOMCAT -->
|
|
|
|
<!-- <packaging>war</packaging> -->
|
2018-05-21 18:42:07 +08:00
|
|
|
|
2020-04-29 21:15:25 +08:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<argLine>-Dfile.encoding=UTF-8</argLine>
|
2020-10-16 21:53:44 +08:00
|
|
|
<java.version>1.8</java.version>
|
2020-04-29 21:15:25 +08:00
|
|
|
<skipTests>true</skipTests>
|
2021-02-03 16:00:27 +08:00
|
|
|
<!-- https://github.com/spring-projects/spring-boot/issues/24602 -->
|
|
|
|
<thymeleaf.version>3.0.11.RELEASE</thymeleaf.version>
|
2020-04-29 21:15:25 +08:00
|
|
|
</properties>
|
2019-01-31 17:43:10 +08:00
|
|
|
|
2020-04-29 21:15:25 +08:00
|
|
|
<build>
|
|
|
|
<finalName>rebuild</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2020-10-16 21:53:44 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2020-10-21 16:44:10 +08:00
|
|
|
<!-- /etc/init.d/rebuild.jar start|stop|restart -->
|
|
|
|
<!--
|
|
|
|
<configuration>
|
|
|
|
<executable>true</executable>
|
|
|
|
<fork>true</fork>
|
|
|
|
</configuration>
|
|
|
|
-->
|
2020-04-29 21:15:25 +08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2020-10-16 21:53:44 +08:00
|
|
|
<groupId>com.github.eirslett</groupId>
|
|
|
|
<artifactId>frontend-maven-plugin</artifactId>
|
2021-02-02 00:25:34 +08:00
|
|
|
<version>1.11.0</version>
|
2020-10-16 21:53:44 +08:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>install node and npm</id>
|
|
|
|
<goals>
|
|
|
|
<goal>install-node-and-npm</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>npm install</id>
|
|
|
|
<goals>
|
|
|
|
<goal>npm</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>gulp build</id>
|
|
|
|
<goals>
|
|
|
|
<goal>gulp</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2020-04-29 21:15:25 +08:00
|
|
|
<configuration>
|
2020-10-16 21:53:44 +08:00
|
|
|
<nodeVersion>v10.22.0</nodeVersion>
|
|
|
|
<workingDirectory>.deploy</workingDirectory>
|
2020-04-29 21:15:25 +08:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-10-17 15:02:34 +08:00
|
|
|
<!-- USE RB COMMERCIAL MODULES -->
|
|
|
|
<!--
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>rbv-source</id>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>add-source</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<sources>
|
|
|
|
<source>${basedir}/@rbv/main/java</source>
|
|
|
|
</sources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>rbv-resource</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>add-resource</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${basedir}/@rbv/main/resources</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>rbv-test-source</id>
|
|
|
|
<phase>generate-test-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>add-test-source</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<sources>
|
|
|
|
<source>${basedir}/@rbv/test/java</source>
|
|
|
|
</sources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2020-11-05 20:52:09 +08:00
|
|
|
<execution>
|
|
|
|
<id>rbv-test-resource</id>
|
|
|
|
<phase>generate-test-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>add-test-resource</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${basedir}/@rbv/test/resources</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2020-10-17 15:02:34 +08:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
-->
|
2020-10-16 23:07:49 +08:00
|
|
|
<!-- Codecov : `mvn cobertura:cobertura -DskipTests=false -Drbpass=PASSKEY` & `bash <(curl -s https://codecov.io/bash) -t TOKEN` -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
|
|
<version>2.7</version>
|
|
|
|
<configuration>
|
|
|
|
<instrumentation>
|
|
|
|
<excludes>
|
|
|
|
<exclude>com/rebuild/**/*Test.class</exclude>
|
|
|
|
</excludes>
|
|
|
|
</instrumentation>
|
|
|
|
<formats>
|
|
|
|
<format>html</format>
|
|
|
|
<format>xml</format>
|
|
|
|
</formats>
|
|
|
|
<check />
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-04-29 21:15:25 +08:00
|
|
|
</plugins>
|
2020-10-16 21:53:44 +08:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<excludes>
|
|
|
|
<exclude>web/node_modules/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2020-04-29 21:15:25 +08:00
|
|
|
</build>
|
2018-05-21 18:42:07 +08:00
|
|
|
|
2020-04-29 21:15:25 +08:00
|
|
|
<repositories>
|
2021-02-02 00:25:34 +08:00
|
|
|
<repository>
|
|
|
|
<id>alimaven</id>
|
|
|
|
<name>public</name>
|
2021-04-17 15:07:36 +08:00
|
|
|
<url>https://maven.aliyun.com/nexus/content/groups/public/</url>
|
2021-02-02 00:25:34 +08:00
|
|
|
</repository>
|
|
|
|
<!-- Unpublished libs can be found on https://github.com/devezhao/ -->
|
2020-04-29 21:15:25 +08:00
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2019-01-03 17:21:29 +08:00
|
|
|
|
2020-04-29 21:15:25 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2020-04-29 21:15:25 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2020-10-16 21:53:44 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
2020-04-29 21:15:25 +08:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
2020-10-16 23:28:57 +08:00
|
|
|
<!-- UNCOMMENT USE TOMCAT -->
|
|
|
|
<!-- <scope>provided</scope> -->
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jdbc</artifactId>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
2020-06-23 14:17:46 +08:00
|
|
|
<dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2020-11-09 03:14:21 +08:00
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
2020-06-23 14:17:46 +08:00
|
|
|
</dependency>
|
2020-04-29 21:15:25 +08:00
|
|
|
<dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2020-11-09 03:14:21 +08:00
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
2020-04-29 21:15:25 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
<!--
|
2020-04-29 21:15:25 +08:00
|
|
|
<dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
2021-04-09 17:10:13 +08:00
|
|
|
<scope>provided</scope>
|
2020-10-16 21:53:44 +08:00
|
|
|
<optional>true</optional>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
-->
|
2020-11-09 03:14:21 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context-support</artifactId>
|
2021-02-03 16:00:27 +08:00
|
|
|
<version>5.3.3</version>
|
2020-11-09 03:14:21 +08:00
|
|
|
</dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
|
2020-04-29 21:15:25 +08:00
|
|
|
<dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<optional>true</optional>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
<groupId>com.github.devezhao</groupId>
|
|
|
|
<artifactId>momentjava</artifactId>
|
2021-03-26 15:11:15 +08:00
|
|
|
<version>0.2.1</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
<groupId>com.github.devezhao</groupId>
|
|
|
|
<artifactId>commons</artifactId>
|
2021-02-02 00:25:34 +08:00
|
|
|
<version>1.3.4</version>
|
2020-10-16 21:53:44 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
</exclusion>
|
2020-11-13 21:39:16 +08:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>c3p0</artifactId>
|
|
|
|
<groupId>com.mchange</groupId>
|
|
|
|
</exclusion>
|
2020-10-16 21:53:44 +08:00
|
|
|
</exclusions>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
<groupId>com.github.devezhao</groupId>
|
|
|
|
<artifactId>bizz</artifactId>
|
2020-11-27 15:41:14 +08:00
|
|
|
<version>1.2.0</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
<groupId>com.github.devezhao</groupId>
|
|
|
|
<artifactId>persist4j</artifactId>
|
2021-02-02 00:25:34 +08:00
|
|
|
<version>1.5.3</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cglib</groupId>
|
|
|
|
<artifactId>cglib</artifactId>
|
|
|
|
<version>3.3.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
|
<artifactId>aspectjweaver</artifactId>
|
2021-02-02 00:25:34 +08:00
|
|
|
<version>1.9.6</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
|
|
<artifactId>jackson-module-kotlin</artifactId>
|
2021-02-02 00:25:34 +08:00
|
|
|
<version>2.12.1</version>
|
2020-10-16 21:53:44 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>druid</artifactId>
|
2021-02-07 14:28:26 +08:00
|
|
|
<version>1.2.2</version>
|
2020-10-16 21:53:44 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
2021-02-02 00:25:34 +08:00
|
|
|
<version>8.0.23</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.ehcache</groupId>
|
|
|
|
<artifactId>ehcache</artifactId>
|
|
|
|
<version>2.10.6</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
<artifactId>jedis</artifactId>
|
2021-02-02 00:25:34 +08:00
|
|
|
<version>3.5.1</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.qiniu</groupId>
|
|
|
|
<artifactId>qiniu-java-sdk</artifactId>
|
2021-02-02 00:25:34 +08:00
|
|
|
<version>7.4.0</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.whvcse</groupId>
|
|
|
|
<artifactId>EasyCaptcha</artifactId>
|
|
|
|
<version>1.6.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>eu.bitwalker</groupId>
|
|
|
|
<artifactId>UserAgentUtils</artifactId>
|
|
|
|
<version>1.21</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
<version>1.13.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.hankcs</groupId>
|
|
|
|
<artifactId>hanlp</artifactId>
|
2020-08-06 16:09:09 +08:00
|
|
|
<version>portable-1.7.8</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.vladsch.flexmark</groupId>
|
|
|
|
<artifactId>flexmark</artifactId>
|
2020-08-06 16:09:09 +08:00
|
|
|
<version>0.62.2</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.vladsch.flexmark</groupId>
|
|
|
|
<artifactId>flexmark-ext-tables</artifactId>
|
2020-08-06 16:09:09 +08:00
|
|
|
<version>0.62.2</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
2021-02-02 00:25:34 +08:00
|
|
|
<version>4.9.1</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>easyexcel</artifactId>
|
2021-04-03 02:33:56 +08:00
|
|
|
<version>2.2.8</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>ehcache</artifactId>
|
|
|
|
<groupId>org.ehcache</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
</dependency>
|
2020-04-29 21:15:25 +08:00
|
|
|
<dependency>
|
2020-08-06 16:09:09 +08:00
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
<artifactId>poi</artifactId>
|
|
|
|
<version>4.1.2</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-08-06 16:09:09 +08:00
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
<version>4.1.2</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.poi</groupId>
|
2020-08-06 16:09:09 +08:00
|
|
|
<artifactId>poi-ooxml-schemas</artifactId>
|
|
|
|
<version>4.1.2</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-08-06 16:09:09 +08:00
|
|
|
<groupId>org.jxls</groupId>
|
|
|
|
<artifactId>jxls</artifactId>
|
|
|
|
<version>2.8.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jxls</groupId>
|
|
|
|
<artifactId>jxls-poi</artifactId>
|
|
|
|
<version>2.8.1</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<version>1.4.200</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.aviator</groupId>
|
|
|
|
<artifactId>aviator</artifactId>
|
2021-02-02 00:25:34 +08:00
|
|
|
<version>5.2.3</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.coobird</groupId>
|
|
|
|
<artifactId>thumbnailator</artifactId>
|
2021-02-02 13:34:15 +08:00
|
|
|
<version>0.4.13</version>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>es.moki.ratelimitj</groupId>
|
|
|
|
<artifactId>ratelimitj-inmemory</artifactId>
|
|
|
|
<version>0.6.0</version>
|
|
|
|
</dependency>
|
2020-06-04 23:53:38 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
<artifactId>javase</artifactId>
|
2021-02-02 00:25:34 +08:00
|
|
|
<version>3.4.1</version>
|
2020-06-04 23:53:38 +08:00
|
|
|
</dependency>
|
2020-10-16 21:53:44 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.redisson</groupId>
|
|
|
|
<artifactId>redisson</artifactId>
|
2021-02-02 00:25:34 +08:00
|
|
|
<version>3.15.0</version>
|
2020-10-16 21:53:44 +08:00
|
|
|
</dependency>
|
2021-03-07 18:23:27 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-email</artifactId>
|
|
|
|
<version>1.5</version>
|
|
|
|
</dependency>
|
2021-04-09 17:10:13 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.oshi</groupId>
|
|
|
|
<artifactId>oshi-core</artifactId>
|
|
|
|
<version>5.7.0</version>
|
|
|
|
</dependency>
|
2020-04-29 21:15:25 +08:00
|
|
|
</dependencies>
|
2020-10-16 21:53:44 +08:00
|
|
|
</project>
|