2025-06-19 09:43:36 +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.8.9</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<packaging>jar</packaging>
|
2025-07-09 15:08:49 +08:00
|
|
|
|
<artifactId>nuxt-site</artifactId>
|
2025-06-19 09:43:36 +08:00
|
|
|
|
|
|
|
|
|
<description>
|
|
|
|
|
web服务入口
|
|
|
|
|
</description>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2025-06-20 17:43:53 +08:00
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aliyun.oss</groupId>
|
|
|
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
|
|
|
<version>3.17.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
2025-07-21 10:08:24 +08:00
|
|
|
|
<version>2.11.0</version>
|
2025-06-20 17:43:53 +08:00
|
|
|
|
</dependency>
|
2025-06-19 09:43:36 +08:00
|
|
|
|
<!--微信支付SDK-->
|
2025-06-20 10:58:46 +08:00
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
|
<artifactId>tomcat-embed-core</artifactId>
|
|
|
|
|
<version>9.0.75</version>
|
|
|
|
|
</dependency>
|
2025-06-19 09:43:36 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.binarywang</groupId>
|
|
|
|
|
<artifactId>weixin-java-mp</artifactId>
|
|
|
|
|
<version>4.1.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.wechatpay-apiv3</groupId>
|
|
|
|
|
<artifactId>wechatpay-apache-httpclient</artifactId>
|
|
|
|
|
<version>0.4.7</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.binarywang</groupId>
|
|
|
|
|
<artifactId>weixin-java-pay</artifactId>
|
|
|
|
|
<version>4.7.2.B</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.wechatpay-apiv3</groupId>
|
|
|
|
|
<artifactId>wechatpay-java</artifactId>
|
|
|
|
|
<version>0.2.17</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- OkHttp 核心依赖 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
|
<version>4.10.0</version> <!-- 请替换为最新版本号 -->
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Okio 是 OkHttp 的底层依赖,通常会自动引入,但可以显式声明 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.squareup.okio</groupId>
|
|
|
|
|
<artifactId>okio</artifactId>
|
|
|
|
|
<version>3.0.0</version> <!-- 请替换为最新版本号 -->
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- spring-boot-devtools -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
<optional>true</optional> <!-- 表示依赖不会传递 -->
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- swagger3-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
<artifactId>springfox-boot-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
|
<artifactId>swagger-models</artifactId>
|
|
|
|
|
<version>1.6.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Mysql驱动包 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 核心模块-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-framework</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 定时任务-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-quartz</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 代码生成-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-generator</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.binarywang</groupId>
|
|
|
|
|
<artifactId>weixin-java-common</artifactId>
|
|
|
|
|
<version>4.6.0</version>
|
|
|
|
|
</dependency>
|
2025-06-20 17:43:53 +08:00
|
|
|
|
<!-- 阿里云OSS-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aliyun.oss</groupId>
|
|
|
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 简化HTTP请求处理 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
|
</dependency>
|
2025-07-03 16:21:17 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-websocket</artifactId>
|
|
|
|
|
<version>5.3.31</version>
|
|
|
|
|
</dependency>
|
2025-07-10 17:54:45 +08:00
|
|
|
|
<!-- ip2region-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.lionsoul</groupId>
|
|
|
|
|
<artifactId>ip2region</artifactId>
|
|
|
|
|
<version>2.7.0</version>
|
|
|
|
|
</dependency>
|
2025-07-18 14:42:19 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
|
<version>1.11.3</version>
|
|
|
|
|
</dependency>
|
2025-07-21 10:08:24 +08:00
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.api-ads</groupId>
|
|
|
|
|
<artifactId>google-ads</artifactId>
|
|
|
|
|
<version>28.0.0</version> <!-- 使用最新版本 -->
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2025-06-19 09:43:36 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<version>2.5.15</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
|
|
|
|
|
</configuration>
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
</project>
|