|
|
@@ -39,4 +39,372 @@
|
|
|
<mybatisplus.version>3.2.0</mybatisplus.version>
|
|
|
</properties>
|
|
|
|
|
|
+ <dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+ <!--Spring Start-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-dependencies</artifactId>
|
|
|
+ <version>${spring.cloud.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-dependencies</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.github.openfeign</groupId>
|
|
|
+ <artifactId>feign-okhttp</artifactId>
|
|
|
+ <version>13.3</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--SpringBoot End-->
|
|
|
+
|
|
|
+ <!--Druid Start-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>druid-spring-boot-starter</artifactId>
|
|
|
+ <version>1.2.8</version>
|
|
|
+ </dependency>
|
|
|
+ <!--Druid End-->
|
|
|
+
|
|
|
+ <!--Alibaba Start-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
+ <version>${spring-cloud-nacos.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
+ <version>${spring-cloud-nacos.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.redisson</groupId>
|
|
|
+ <artifactId>redisson-spring-boot-starter</artifactId>
|
|
|
+ <version>3.17.7</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>2.0.7</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aliyun</groupId>
|
|
|
+ <artifactId>dysmsapi20170525</artifactId>
|
|
|
+ <version>3.1.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alipay.sdk</groupId>
|
|
|
+ <artifactId>alipay-sdk-java</artifactId>
|
|
|
+ <version>4.40.8.ALL</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--Alibaba End-->
|
|
|
+
|
|
|
+ <!--Apache Start-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
+ <version>2.11.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
+ <artifactId>commons-lang3</artifactId>
|
|
|
+ <version>3.9</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-codec</groupId>
|
|
|
+ <artifactId>commons-codec</artifactId>
|
|
|
+ <version>1.10</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.httpcomponents</groupId>
|
|
|
+ <artifactId>httpclient</artifactId>
|
|
|
+ <version>4.5.11</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--redis连接池需要此依赖-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
+ <artifactId>commons-pool2</artifactId>
|
|
|
+ <version>2.7.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-fileupload</groupId>
|
|
|
+ <artifactId>commons-fileupload</artifactId>
|
|
|
+ <version>1.5</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--打印, pdf转换成img-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.pdfbox</groupId>
|
|
|
+ <artifactId>pdfbox</artifactId>
|
|
|
+ <version>2.0.8</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi</artifactId>
|
|
|
+ <version>5.2.3</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi-ooxml</artifactId>
|
|
|
+ <version>5.2.3</version>
|
|
|
+ </dependency>
|
|
|
+ <!--Apache End-->
|
|
|
+
|
|
|
+ <!--Swagger Start-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
+ <artifactId>springfox-swagger2</artifactId>
|
|
|
+ <version>2.9.2</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>swagger-annotations</artifactId>
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>swagger-models</artifactId>
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </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>io.springfox</groupId>
|
|
|
+ <artifactId>springfox-swagger-ui</artifactId>
|
|
|
+ <version>2.9.2</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.xiaoymin</groupId>
|
|
|
+ <artifactId>swagger-bootstrap-ui</artifactId>
|
|
|
+ <version>1.9.6</version>
|
|
|
+ </dependency>
|
|
|
+ <!--Swagger End-->
|
|
|
+
|
|
|
+ <!-- MyBatis-Plus Start-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
+ <version>${mybatisplus.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- mybatis-plus代码生成器 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-generator</artifactId>
|
|
|
+ <version>${mybatisplus.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jsqlparser</artifactId>
|
|
|
+ <groupId>com.github.jsqlparser</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>mybatis</artifactId>
|
|
|
+ <groupId>org.mybatis</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>mybatis-spring</artifactId>
|
|
|
+ <groupId>org.mybatis</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-annotation</artifactId>
|
|
|
+ <version>${mybatisplus.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-extension</artifactId>
|
|
|
+ <version>${mybatisplus.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-core</artifactId>
|
|
|
+ <version>${mybatisplus.version}</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- mybatisPlus Freemarker 模版引擎 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.freemarker</groupId>
|
|
|
+ <artifactId>freemarker</artifactId>
|
|
|
+ <version>2.3.29</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- MyBatis-Plus End-->
|
|
|
+
|
|
|
+ <!--Databases Start-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ <scope>runtime</scope>
|
|
|
+ <version>8.0.18</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- sqlite -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.xerial</groupId>
|
|
|
+ <artifactId>sqlite-jdbc</artifactId>
|
|
|
+ <version>3.30.1</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--Databases End-->
|
|
|
+
|
|
|
+ <!--Other Start-->
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
+ <artifactId>jackson-core</artifactId>
|
|
|
+ <version>2.13.0</version> <!-- 可以根据需要调整版本 -->
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
+ <artifactId>jackson-databind</artifactId>
|
|
|
+ <version>2.13.0</version> <!-- 可以根据需要调整版本 -->
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
+ <artifactId>jackson-annotations</artifactId>
|
|
|
+ <version>2.13.0</version> <!-- 可以根据需要调整版本 -->
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ <version>1.18.32</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.pagehelper</groupId>
|
|
|
+ <artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
+ <version>1.3.1</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.mybatis</groupId>
|
|
|
+ <artifactId>mybatis</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>dom4j</groupId>
|
|
|
+ <artifactId>dom4j</artifactId>
|
|
|
+ <version>1.6.1</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--解析url-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.github.url-detector</groupId>
|
|
|
+ <artifactId>url-detector</artifactId>
|
|
|
+ <version>0.1.23</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--JaudioTagger获取音频信息-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org</groupId>
|
|
|
+ <artifactId>jaudiotagger</artifactId>
|
|
|
+ <version>2.0.3</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.xuxueli</groupId>
|
|
|
+ <artifactId>xxl-job-core</artifactId>
|
|
|
+ <version>2.4.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--农历转公历-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.6tail</groupId>
|
|
|
+ <artifactId>lunar</artifactId>
|
|
|
+ <version>1.3.15</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.6tail</groupId>
|
|
|
+ <artifactId>tyme4j</artifactId>
|
|
|
+ <version>1.1.6</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.netease.yidun</groupId>
|
|
|
+ <artifactId>yidun-java-sdk</artifactId>
|
|
|
+ <version>1.4.11</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.auth0</groupId>
|
|
|
+ <artifactId>java-jwt</artifactId>
|
|
|
+ <version>3.4.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 验证码 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>pro.fessional</groupId>
|
|
|
+ <artifactId>kaptcha</artifactId>
|
|
|
+ <version>2.3.3</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
+ <artifactId>hutool-captcha</artifactId>
|
|
|
+ <version>5.8.18</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-security</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--Other End-->
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <version>2.3.2.RELEASE</version>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+
|
|
|
</project>
|