From 364adbc9a93a396b74e154f910c2a0a72bfb1a0f Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期六, 29 十一月 2025 22:10:41 +0800
Subject: [PATCH] feat: 更新车辆里程统计
---
ruoyi-admin/pom.xml | 28 ++++++++++++++++++----------
1 files changed, 18 insertions(+), 10 deletions(-)
diff --git a/ruoyi-admin/pom.xml b/ruoyi-admin/pom.xml
index da03592..a77a0d9 100644
--- a/ruoyi-admin/pom.xml
+++ b/ruoyi-admin/pom.xml
@@ -63,6 +63,14 @@
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-generator</artifactId>
</dependency>
+
+ <!-- 鏀粯妯″潡 -->
+ <dependency>
+ <groupId>com.ruoyi</groupId>
+ <artifactId>dryad-payment</artifactId>
+ <version>1.0.0</version>
+ </dependency>
+
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
@@ -76,13 +84,9 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
- <version>2.5.15</version>
+ <version>2.5.14</version>
<configuration>
- <fork>true</fork> <!-- 濡傛灉娌℃湁璇ラ厤缃紝devtools涓嶄細鐢熸晥 -->
- <profiles>
- <profile>dev</profile>
- <profile>prod</profile>
- </profiles>
+ <mainClass>com.ruoyi.RuoYiApplication</mainClass>
</configuration>
<executions>
<execution>
@@ -109,18 +113,22 @@
<profile>
<id>dev</id>
<properties>
- <spring.profiles.active>dev</spring.profiles.active>
- <logging.level.com.ruoyi>debug</logging.level.com.ruoyi>
+ <profiles.active>dev</profiles.active>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
+ <id>test</id>
+ <properties>
+ <profiles.active>test</profiles.active>
+ </properties>
+ </profile>
+ <profile>
<id>prod</id>
<properties>
- <spring.profiles.active>prod</spring.profiles.active>
- <logging.level.com.ruoyi>info</logging.level.com.ruoyi>
+ <profiles.active>prod</profiles.active>
</properties>
</profile>
</profiles>
--
Gitblit v1.9.1