From f1ba120c486048373505acfa74c3943c19be55ca Mon Sep 17 00:00:00 2001 From: wanglizhong <wlz> Date: 星期三, 14 五月 2025 15:23:20 +0800 Subject: [PATCH] feat:优化查看历史轨迹 --- ruoyi-admin/pom.xml | 36 ++++++++++++++++++++++++++++++++---- 1 files changed, 32 insertions(+), 4 deletions(-) diff --git a/ruoyi-admin/pom.xml b/ruoyi-admin/pom.xml index 3ba8d4a..624a352 100644 --- a/ruoyi-admin/pom.xml +++ b/ruoyi-admin/pom.xml @@ -44,8 +44,7 @@ </dependency> <dependency> <groupId>com.microsoft.sqlserver</groupId> - <artifactId>mssql-jdbc</artifactId> - <version>9.4.0.jre8</version> + <artifactId>mssql-jdbc</artifactId> </dependency> <!-- 鏍稿績妯″潡--> <dependency> @@ -64,6 +63,11 @@ <groupId>com.ruoyi</groupId> <artifactId>ruoyi-generator</artifactId> </dependency> + <dependency> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + <scope>provided</scope> + </dependency> </dependencies> @@ -72,9 +76,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涓嶄細鐢熸晥 --> + <mainClass>com.ruoyi.RuoYiApplication</mainClass> </configuration> <executions> <execution> @@ -97,4 +101,28 @@ <finalName>${project.artifactId}</finalName> </build> + <profiles> + <profile> + <id>dev</id> + <properties> + <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> + <profiles.active>prod</profiles.active> + </properties> + </profile> + </profiles> + </project> \ No newline at end of file -- Gitblit v1.9.1