2023-10-16 03:40:13 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2024-03-26 14:35:14 +00:00
|
|
|
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">
|
2023-10-16 03:40:13 +00:00
|
|
|
<parent>
|
|
|
|
<artifactId>ruoyi</artifactId>
|
|
|
|
<groupId>com.ruoyi</groupId>
|
2024-06-30 20:24:05 +00:00
|
|
|
<version>3.8.8.3.1</version>
|
2023-10-16 03:40:13 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<artifactId>ruoyi-admin</artifactId>
|
|
|
|
|
|
|
|
<description>
|
|
|
|
web服务入口
|
|
|
|
</description>
|
|
|
|
|
2024-01-26 16:51:40 +00:00
|
|
|
<dependencies>
|
2023-10-16 03:40:13 +00:00
|
|
|
|
|
|
|
<!-- spring-boot-devtools -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
<optional>true</optional> <!-- 表示依赖不会传递 -->
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Mysql驱动包 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2025-01-07 17:18:18 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-10-16 03:40:13 +00:00
|
|
|
<!-- 核心模块-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
<artifactId>ruoyi-framework</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2024-02-15 15:21:27 +00:00
|
|
|
<!-- 集成第三方登录启动器 -->
|
2024-01-15 18:09:33 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.ruoyi</groupId>
|
2024-06-09 19:42:47 +00:00
|
|
|
<artifactId>ruoyi-auth-starter</artifactId>
|
2024-01-26 16:51:40 +00:00
|
|
|
</dependency>
|
|
|
|
|
2024-02-15 15:21:27 +00:00
|
|
|
<!-- 集成第三方支付启动器 -->
|
2024-02-14 08:04:30 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.ruoyi</groupId>
|
2024-02-15 15:21:27 +00:00
|
|
|
<artifactId>ruoyi-pay-starter</artifactId>
|
2024-02-14 08:04:30 +00:00
|
|
|
</dependency>
|
|
|
|
|
2024-04-24 09:27:52 +00:00
|
|
|
<!-- 中间件 -->
|
2024-04-15 22:29:20 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.ruoyi</groupId>
|
2024-04-24 09:27:52 +00:00
|
|
|
<artifactId>ruoyi-middleware-starter</artifactId>
|
2024-04-15 22:29:20 +00:00
|
|
|
</dependency>
|
|
|
|
|
2024-04-24 09:27:52 +00:00
|
|
|
<!-- plugins-->
|
2024-04-19 17:43:32 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.ruoyi</groupId>
|
2024-04-24 09:27:52 +00:00
|
|
|
<artifactId>ruoyi-plugins-starter</artifactId>
|
2024-04-19 17:43:32 +00:00
|
|
|
</dependency>
|
|
|
|
|
2024-04-24 09:27:52 +00:00
|
|
|
<!-- models-->
|
2024-04-21 17:39:21 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.ruoyi</groupId>
|
2024-04-24 09:27:52 +00:00
|
|
|
<artifactId>ruoyi-models-starter</artifactId>
|
2024-04-21 17:39:21 +00:00
|
|
|
</dependency>
|
|
|
|
|
2024-03-26 14:35:14 +00:00
|
|
|
<!-- knife4j -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
|
<artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
2024-04-24 09:27:52 +00:00
|
|
|
|
2023-10-16 03:40:13 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2023-10-16 16:49:13 +00:00
|
|
|
<version>3.0.0</version>
|
2023-10-16 03:40:13 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>repackage</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
<configuration>
|
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
|
<warName>${project.artifactId}</warName>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
</build>
|
|
|
|
|
2024-01-15 18:09:33 +00:00
|
|
|
</project>
|