From ec540382b69a3cdb6d6dac2ed61d97236b62328d Mon Sep 17 00:00:00 2001
From: liulin <lin.liu@88.com>
Date: 星期日, 13 四月 2025 03:36:39 +0800
Subject: [PATCH] 修改配置

---
 pom.xml |   66 ++++++++++++++++++++++++---------
 1 files changed, 48 insertions(+), 18 deletions(-)

diff --git a/pom.xml b/pom.xml
index 4e86ba6..251981e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -9,11 +9,11 @@
         <relativePath/>
     </parent>
 
-    <groupId>com.lunhan.xxx</groupId>
-    <artifactId>xxx-yyy</artifactId>
+    <groupId>com.nanjing.water</groupId>
+    <artifactId>nanjing-station-service</artifactId>
     <version>0.0.1-SNAPSHOT</version>
-    <name>xxx-yyy-service</name>
-    <description>The service which yyy of xxx project</description>
+    <name>nanjing-station-service</name>
+    <description>The service which name is nanjing-station of water</description>
 
     <properties>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -88,13 +88,6 @@
             <groupId>com.alibaba</groupId>
             <artifactId>druid-spring-boot-starter</artifactId>
             <version>${druid.version}</version>
-        </dependency>
-        <!-- 动态多数据源 -->
-        <dependency>
-            <groupId>com.baomidou</groupId>
-            <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
-            <version>4.2.0</version>
-            <scope>test</scope>
         </dependency>
         <!-- mybatis-plus -->
         <dependency>
@@ -207,13 +200,6 @@
             </exclusions>
         </dependency>
 
-        <!-- 定时任务-xxl-job -->
-        <dependency>
-            <groupId>com.xuxueli</groupId>
-            <artifactId>xxl-job-core</artifactId>
-            <version>2.4.0</version>
-        </dependency>
-
         <!-- 加密算法库 -->
         <dependency>
             <groupId>org.bouncycastle</groupId>
@@ -228,6 +214,40 @@
             <version>1.16.22</version><!-- 注意如果版本过低,会和mapstruct冲突,导致不能映射实体 -->
         </dependency>
 
+        <!-- 动态多数据源 -->
+        <dependency>
+            <groupId>com.baomidou</groupId>
+            <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
+            <version>4.2.0</version>
+            <scope>test</scope>
+        </dependency>
+
+        <!-- 操作jenkins -->
+        <dependency>
+            <groupId>io.github.cdancy</groupId>
+            <artifactId>jenkins-rest</artifactId>
+            <version>1.0.1</version>
+            <scope>test</scope>
+        </dependency>
+
+        <!--quartz依赖-->
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-quartz</artifactId>
+            <version>2.0.3.RELEASE</version>
+        </dependency>
+        <!-- mqtt 依赖 -->
+        <dependency>
+            <groupId>org.eclipse.paho</groupId>
+            <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
+            <version>1.2.5</version>
+        </dependency>
+        <!--生成验证码工具-->
+        <dependency>
+            <groupId>com.github.whvcse</groupId>
+            <artifactId>easy-captcha</artifactId>
+            <version>1.6.2</version>
+        </dependency>
         <!--************************************************** 单元测试相关 **************************************************-->
         <dependency>
             <groupId>org.springframework.boot</groupId>
@@ -277,6 +297,16 @@
                 <package.buildName></package.buildName>
             </properties>
         </profile>
+
+        <!-- 本地化部署环境 -->
+        <profile>
+            <id>local</id>
+            <properties>
+                <!-- 设置参数“package.environment”的值 -->
+                <package.environment>local</package.environment>
+                <package.buildName></package.buildName>
+            </properties>
+        </profile>
     </profiles>
 
     <build>

--
Gitblit v1.9.3