You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
3.0 KiB
107 lines
3.0 KiB
|
1 month ago
|
<?xml version="1.0"?>
|
||
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<parent>
|
||
|
|
<groupId>com.techsor</groupId>
|
||
|
|
<artifactId>data-center-business</artifactId>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
</parent>
|
||
|
|
<artifactId>data-center-business-util</artifactId>
|
||
|
|
<name>data-center-business-util</name>
|
||
|
|
<url>http://maven.apache.org</url>
|
||
|
|
<properties>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
</properties>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>junit</groupId>
|
||
|
|
<artifactId>junit</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.commons</groupId>
|
||
|
|
<artifactId>commons-lang3</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.commons</groupId>
|
||
|
|
<artifactId>commons-pool2</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-collections</groupId>
|
||
|
|
<artifactId>commons-collections</artifactId>
|
||
|
|
<version>3.2.2</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>fastjson</artifactId>
|
||
|
|
<version>2.0.7.graal</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.dom4j</groupId>
|
||
|
|
<artifactId>dom4j</artifactId>
|
||
|
|
<version>2.1.3</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.google.code.gson</groupId>
|
||
|
|
<artifactId>gson</artifactId>
|
||
|
|
<version>2.9.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.mail</groupId>
|
||
|
|
<artifactId>mail</artifactId>
|
||
|
|
<version>1.5.0-b01</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.opencsv</groupId>
|
||
|
|
<artifactId>opencsv</artifactId>
|
||
|
|
<version>5.6</version> <!-- 使用最新版本 -->
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.amazonaws</groupId>
|
||
|
|
<artifactId>aws-java-sdk-athena</artifactId>
|
||
|
|
<version>1.12.782</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- https://mvnrepository.com/artifact/org.owasp.encoder/encoder -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.owasp.encoder</groupId>
|
||
|
|
<artifactId>encoder</artifactId>
|
||
|
|
<version>1.3.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.security/spring-security-oauth2-authorization-server -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.security</groupId>
|
||
|
|
<artifactId>spring-security-oauth2-authorization-server</artifactId>
|
||
|
|
<version>1.5.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.nimbusds</groupId>
|
||
|
|
<artifactId>nimbus-jose-jwt</artifactId>
|
||
|
|
<version>9.37.3</version> <!-- 这是截至 2025 年推荐的稳定版本 -->
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
</project>
|