2025-09-16 13:58:24 +08: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>
|
|
|
|
|
<artifactId>ruoyi</artifactId>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<version>3.9.0</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>ruoyi-system</artifactId>
|
|
|
|
|
|
|
|
|
|
<description>
|
|
|
|
|
system系统模块
|
|
|
|
|
</description>
|
|
|
|
|
|
2026-01-18 21:30:49 +08:00
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<!-- 通用工具-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-common</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 微信小程序SDK -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.binarywang</groupId>
|
|
|
|
|
<artifactId>weixin-java-miniapp</artifactId>
|
|
|
|
|
<version>4.5.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 支付宝SDK -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alipay.sdk</groupId>
|
|
|
|
|
<artifactId>alipay-sdk-java</artifactId>
|
|
|
|
|
<version>4.38.157.ALL</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- HTTP客户端 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
|
<version>4.5.13</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- JSON处理 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
<version>1.2.83</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
2025-09-16 13:58:24 +08:00
|
|
|
|
2025-06-05 14:59:19 +08:00
|
|
|
</project>
|