2024-03-29 16:26:33 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2024-04-07 10:54:47 +08:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2024-03-29 16:26:33 +08:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.bytedesk</groupId>
|
|
|
|
|
<artifactId>modules</artifactId>
|
|
|
|
|
<!-- <version>${im.version}</version> -->
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
2024-05-21 09:02:02 +08:00
|
|
|
<artifactId>bytedesk-module-core</artifactId>
|
2024-03-29 16:26:33 +08:00
|
|
|
|
|
|
|
|
<name>core</name>
|
|
|
|
|
<description>Demo project for Spring Boot</description>
|
|
|
|
|
|
|
|
|
|
<properties>
|
2024-04-30 09:37:49 +08:00
|
|
|
<jsonwebtoken.version>0.12.5</jsonwebtoken.version>
|
2024-03-29 16:26:33 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- https://github.com/redisson/redisson?tab=readme-ov-file -->
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.redisson/redisson -->
|
|
|
|
|
<!-- <dependency>
|
|
|
|
|
<groupId>org.redisson</groupId>
|
|
|
|
|
<artifactId>redisson</artifactId>
|
|
|
|
|
<version>3.27.0</version>
|
|
|
|
|
</dependency> -->
|
|
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents.core5/httpcore5 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents.core5</groupId>
|
|
|
|
|
<artifactId>httpcore5</artifactId>
|
|
|
|
|
<version>5.2.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents.client5/httpclient5 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
|
|
|
<artifactId>httpclient5</artifactId>
|
|
|
|
|
<version>5.3.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-api -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
<artifactId>jjwt-api</artifactId>
|
2024-04-30 09:37:49 +08:00
|
|
|
<version>${jsonwebtoken.version}</version>
|
2024-03-29 16:26:33 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-impl -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
<artifactId>jjwt-impl</artifactId>
|
2024-04-30 09:37:49 +08:00
|
|
|
<version>${jsonwebtoken.version}</version>
|
2024-03-29 16:26:33 +08:00
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-jackson -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
<artifactId>jjwt-jackson</artifactId>
|
2024-04-30 09:37:49 +08:00
|
|
|
<version>${jsonwebtoken.version}</version>
|
2024-03-29 16:26:33 +08:00
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 导入、导出Excel -->
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>easyexcel</artifactId>
|
|
|
|
|
<version>3.3.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 上传图片到阿里云OSS -->
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.aliyun.oss/aliyun-sdk-oss -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aliyun.oss</groupId>
|
|
|
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
|
|
|
<version>3.17.4</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--腾讯云对象存储-->
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.qcloud/cos_api -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.qcloud</groupId>
|
|
|
|
|
<artifactId>cos_api</artifactId>
|
|
|
|
|
<version>5.6.205</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- ip2region -->
|
|
|
|
|
<!-- https://github.com/lionsoul2014/ip2region -->
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.lionsoul/ip2region -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.lionsoul</groupId>
|
|
|
|
|
<artifactId>ip2region</artifactId>
|
|
|
|
|
<version>2.7.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<!-- <plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
</plugin> -->
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
2024-04-07 10:54:47 +08:00
|
|
|
</project>
|