From 2aebbc9601ab439707f69b08e467808df9f7549c Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期五, 07 十一月 2025 11:50:26 +0800
Subject: [PATCH] feat: weixin
---
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