auth-server-java/auth-system/services/pom.xml

119 lines
3.8 KiB
XML
Raw Normal View History

2024-09-27 12:21:17 +08:00
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.bunny</groupId>
2025-04-21 14:23:06 +08:00
<artifactId>auth-system</artifactId>
2024-09-27 12:21:17 +08:00
<version>0.0.1-SNAPSHOT</version>
</parent>
2025-04-18 22:48:49 +08:00
<artifactId>services</artifactId>
2024-09-27 12:21:17 +08:00
<packaging>jar</packaging>
2025-04-18 22:48:49 +08:00
<name>services</name>
2024-09-27 12:21:17 +08:00
<url>https://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>cn.bunny</groupId>
2025-04-18 22:48:49 +08:00
<artifactId>mappers</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>cn.bunny</groupId>
<artifactId>common-config</artifactId>
2024-09-27 12:21:17 +08:00
<version>0.0.1-SNAPSHOT</version>
</dependency>
2025-03-24 22:14:21 +08:00
2025-04-18 22:48:49 +08:00
<!-- 单元测试 -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
2025-03-24 22:14:21 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
2025-04-18 22:48:49 +08:00
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
2025-03-24 22:14:21 +08:00
</dependency>
2025-04-18 22:48:49 +08:00
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.30.0</version>
</dependency>
2025-03-24 22:14:21 +08:00
<!-- asp 切面 -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
</dependency>
2025-02-17 00:02:34 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
2025-04-18 22:48:49 +08:00
2025-03-24 22:14:21 +08:00
<!-- quartz -->
2025-02-18 18:28:16 +08:00
<dependency>
2025-03-24 22:14:21 +08:00
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
</dependency>
<!-- thymeleaf -->
2024-09-27 12:21:17 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
2025-03-24 22:14:21 +08:00
<artifactId>spring-boot-starter-thymeleaf</artifactId>
2024-09-27 12:21:17 +08:00
</dependency>
2025-04-18 22:48:49 +08:00
2025-03-24 22:14:21 +08:00
<!-- WebSocket -->
2024-09-27 12:21:17 +08:00
<dependency>
2025-03-24 22:14:21 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-websocket</artifactId>
2024-09-27 12:21:17 +08:00
</dependency>
2025-03-24 22:14:21 +08:00
<!-- admin 依赖 -->
2024-09-27 12:21:17 +08:00
<dependency>
2025-03-24 22:14:21 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<version>3.2.3</version>
2024-09-27 12:21:17 +08:00
</dependency>
2025-03-24 22:14:21 +08:00
<!-- hutool -->
2024-09-27 12:21:17 +08:00
<dependency>
2025-03-24 22:14:21 +08:00
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
2024-09-27 12:21:17 +08:00
</dependency>
<dependency>
2025-03-24 22:14:21 +08:00
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.14</version>
</dependency>
<!-- mysql连接驱动 -->
<dependency>
2025-04-04 18:10:55 +08:00
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
2024-09-27 12:21:17 +08:00
</dependency>
2025-03-24 22:14:21 +08:00
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
</dependency>
2024-09-27 12:21:17 +08:00
</dependencies>
</project>