edu/server/like-common/pom.xml

230 lines
6.9 KiB
XML
Raw Normal View History

2022-03-25 06:33:56 +00: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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<!-- 父工程 -->
<parent>
2022-08-19 01:39:25 +00:00
<groupId>org.mdd</groupId>
2022-03-25 11:01:17 +00:00
<artifactId>likeadmin-java</artifactId>
2022-06-09 09:27:11 +00:00
<version>1.0.0</version>
2022-03-25 06:33:56 +00:00
</parent>
<!-- 模块信息 -->
<modelVersion>4.0.0</modelVersion>
<artifactId>like-common</artifactId>
<name>like-common</name>
2022-09-06 06:07:30 +00:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2022-11-29 08:57:15 +00:00
<version>3.10.0</version>
2022-09-06 06:07:30 +00:00
<configuration>
2022-09-06 10:24:24 +00:00
<source>1.8</source>
<target>1.8</target>
2022-09-06 06:07:30 +00:00
</configuration>
</plugin>
</plugins>
</build>
2022-03-25 06:33:56 +00:00
<!-- 依赖管理 -->
<dependencies>
2022-11-15 14:25:17 +00:00
<!-- Autoconfigure -->
2022-03-25 06:33:56 +00:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
2022-11-15 14:25:17 +00:00
<!-- Processor -->
2022-03-29 10:54:41 +00:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
</dependency>
2022-11-15 14:25:17 +00:00
2022-03-25 06:33:56 +00:00
<!-- Web依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
2022-11-15 14:25:17 +00:00
<!-- Log4j2 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
2022-03-25 06:33:56 +00:00
</dependency>
2022-11-15 14:25:17 +00:00
<!-- Aop -->
2022-03-25 06:33:56 +00:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
2022-11-15 14:25:17 +00:00
<!-- Validation -->
2022-03-25 06:33:56 +00:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
2022-11-15 14:25:17 +00:00
<!--Redis-->
2022-03-29 10:54:41 +00:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
2022-11-15 14:25:17 +00:00
<!-- Mysql-Connector -->
2022-03-25 06:33:56 +00:00
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
2022-11-15 14:25:17 +00:00
<!-- MyBatis-Plus -->
2022-03-25 06:33:56 +00:00
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
</dependency>
2022-11-15 14:25:17 +00:00
<!-- MyBatis-Plus-Join -->
2022-03-25 06:33:56 +00:00
<dependency>
<groupId>com.github.yulichang</groupId>
<artifactId>mybatis-plus-join</artifactId>
</dependency>
2022-11-15 14:25:17 +00:00
<!-- MyBatis-Page-Helper -->
2022-03-25 06:33:56 +00:00
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
</dependency>
2022-11-15 14:25:17 +00:00
<!-- Pool2 -->
2022-03-25 06:33:56 +00:00
<dependency>
2022-11-15 14:25:17 +00:00
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
2022-03-25 06:33:56 +00:00
</dependency>
2022-11-15 14:25:17 +00:00
<!-- Lombok -->
2022-03-31 11:03:25 +00:00
<dependency>
2022-11-15 14:25:17 +00:00
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
2022-03-31 11:03:25 +00:00
</dependency>
2022-11-15 14:25:17 +00:00
<!-- Fastjson2 -->
2022-03-29 10:54:41 +00:00
<dependency>
2022-11-15 14:25:17 +00:00
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
2022-03-29 10:54:41 +00:00
</dependency>
2024-11-12 14:46:53 +00:00
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.9.3</version>
</dependency>
2024-10-21 16:37:52 +00:00
<dependency>
<groupId>com.alipay.sdk</groupId>
<artifactId>alipay-sdk-java</artifactId>
2024-11-12 14:46:53 +00:00
<version>4.39.246.ALL</version>
<exclusions>
<exclusion>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
</exclusion>
</exclusions>
2024-10-21 16:37:52 +00:00
</dependency>
2022-11-15 14:25:17 +00:00
<!-- Gson工具 -->
2022-03-28 11:00:23 +00:00
<dependency>
2022-03-29 10:54:41 +00:00
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
2022-03-30 11:02:05 +00:00
</dependency>
2022-11-15 14:25:17 +00:00
<!-- UA工具 -->
2022-04-01 10:35:13 +00:00
<dependency>
<groupId>nl.bitwalker</groupId>
<artifactId>UserAgentUtils</artifactId>
</dependency>
2022-11-15 14:25:17 +00:00
<!-- Str工具 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<!-- IO工具 -->
2022-06-16 07:05:11 +00:00
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
2022-11-15 14:25:17 +00:00
<!-- 七牛云OSS -->
2022-03-30 11:02:05 +00:00
<dependency>
<groupId>com.qiniu</groupId>
<artifactId>qiniu-java-sdk</artifactId>
</dependency>
2022-11-15 14:25:17 +00:00
2022-03-31 03:45:06 +00:00
<!-- 腾讯云COS -->
<dependency>
<groupId>com.qcloud</groupId>
<artifactId>cos_api</artifactId>
</dependency>
2022-11-15 14:25:17 +00:00
2022-03-30 11:02:05 +00:00
<!-- 阿里云OSS -->
<dependency>
<groupId>com.aliyun.oss</groupId>
<artifactId>aliyun-sdk-oss</artifactId>
2022-03-28 11:00:23 +00:00
</dependency>
2022-11-15 14:25:17 +00:00
2022-05-20 02:52:27 +00:00
<!-- 腾讯云短信 -->
2022-03-31 06:27:07 +00:00
<dependency>
<groupId>com.tencentcloudapi</groupId>
<artifactId>tencentcloud-sdk-java</artifactId>
</dependency>
2022-11-15 14:25:17 +00:00
2022-05-20 02:52:27 +00:00
<!-- 阿里云短信 -->
2022-03-31 06:27:07 +00:00
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-core</artifactId>
2022-11-30 07:54:10 +00:00
</dependency>
<!-- EasyExcel -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
2022-03-31 06:27:07 +00:00
</dependency>
2022-11-15 14:25:17 +00:00
2022-05-20 02:52:27 +00:00
<!-- 系统监控 -->
2022-03-31 11:03:25 +00:00
<dependency>
<groupId>com.github.oshi</groupId>
<artifactId>oshi-core</artifactId>
</dependency>
2022-11-15 14:25:17 +00:00
2023-03-20 08:02:32 +00:00
<!-- Swagger3 -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
</dependency>
2022-09-05 08:49:04 +00:00
<!-- 微信小程序 -->
<dependency>
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-miniapp</artifactId>
</dependency>
2022-11-15 14:25:17 +00:00
2022-09-13 04:07:46 +00:00
<!-- 微信公众号 -->
<dependency>
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-mp</artifactId>
</dependency>
2023-03-14 11:00:36 +00:00
2023-03-20 08:02:32 +00:00
<!-- 微信支付 -->
2023-03-14 11:00:36 +00:00
<dependency>
2023-03-20 08:02:32 +00:00
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-pay</artifactId>
2023-03-14 11:00:36 +00:00
</dependency>
2024-11-12 14:46:53 +00:00
2022-03-25 06:33:56 +00:00
</dependencies>
</project>