From 0bd3125739c0d8bded4f7bd405fd99f1723df964 Mon Sep 17 00:00:00 2001 From: liurunyu <lry9898@163.com> Date: 星期五, 30 五月 2025 15:51:49 +0800 Subject: [PATCH] 不同服务器配置文件备份 --- pms-parent/pom.xml | 86 ++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 81 insertions(+), 5 deletions(-) diff --git a/pms-parent/pom.xml b/pms-parent/pom.xml index 3a9b035..a3eca76 100644 --- a/pms-parent/pom.xml +++ b/pms-parent/pom.xml @@ -29,6 +29,8 @@ <module>pms-web-report</module> <module>pms-web-sso</module> <module>pms-web-station</module> + <module>pms-test</module> + <module>pms-web-wechat</module> </modules> <properties> @@ -47,9 +49,13 @@ <cglib.version>3.3.0</cglib.version> <fastjson2.version>2.0.48</fastjson2.version> <easyexcel.version>3.3.4</easyexcel.version> + <dingtalk.version>2.0.0</dingtalk.version> + <commons-codec.version>1.15</commons-codec.version> <mapstruct.version>1.5.5.Final</mapstruct.version> <dubbo.version>3.2.11</dubbo.version> <hutool-all.version>5.8.22</hutool-all.version> + <jjwt.version>0.12.6</jjwt.version> + <jdom2.version>2.0.6.1</jdom2.version> <quartz.version>2.1.7</quartz.version> <junit.version>4.13.2</junit.version> @@ -61,6 +67,10 @@ <thumbnailator.version>0.4.20</thumbnailator.version> <!-- google zxing 鐢熸垚浜岀淮鐮� --> <google.zxing.version>3.5.3</google.zxing.version> + + <!-- 鑾峰緱绯荤粺淇℃伅 --> + <com.github.oshi-core.version>6.6.2</com.github.oshi-core.version> + <net.java.dev.jna.version>5.12.1</net.java.dev.jna.version> <spring-boot-maven-plugin.version>3.2.0</spring-boot-maven-plugin.version> <maven-jar-plugin-plugin.version>3.3.0</maven-jar-plugin-plugin.version> @@ -80,6 +90,13 @@ <version>${spring.boot.version}</version> <type>pom</type> <scope>import</scope> + <exclusions> + <!-- 寮曞叆log4j2鏃ュ織鏃堕渶鍘绘帀榛樿鐨刲ogback --> + <exclusion> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-logging</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> @@ -186,6 +203,8 @@ <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>${mybatis-plus-boot-starter.version}</version> + <type>pom</type> + <scope>import</scope> <exclusions> <exclusion> <artifactId>mybatis-spring</artifactId> @@ -230,6 +249,28 @@ <type>pom</type> <scope>import</scope> </dependency> + <!--閽夐拤娑堟伅鎺ㄩ��--> + <dependency> + <groupId>com.aliyun</groupId> + <artifactId>alibaba-dingtalk-service-sdk</artifactId> + <version>${dingtalk.version}</version> + <type>pom</type> + <scope>import</scope> + <exclusions> + <!-- spring-jcl鎻愪緵浜唋ogging锛屾墍浠ユ墦鍖呮椂鍘婚櫎瀵筧pache鐨刢ommons-logging鐨勪緷璧� --> + <exclusion> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + <version>${commons-codec.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> <!-- vo po杞崲 --> <dependency> <groupId>org.mapstruct</groupId> @@ -254,10 +295,6 @@ <type>pom</type> <scope>import</scope> <exclusions> - <exclusion> - <groupId>io.netty</groupId> - <artifactId>netty-all</artifactId> - </exclusion> <exclusion> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> @@ -319,6 +356,38 @@ <scope>import</scope> </dependency> + <!-- 鐢熸垚鍥剧墖缂╃暐鍥� --> + <dependency> + <groupId>net.coobird</groupId> + <artifactId>thumbnailator</artifactId> + <version>${thumbnailator.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + + <!-- 鑾峰緱绯荤粺淇℃伅 --> + <dependency> + <groupId>com.github.oshi</groupId> + <artifactId>oshi-core</artifactId> + <version>${com.github.oshi-core.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + <dependency> + <groupId>net.java.dev.jna</groupId> + <artifactId>jna</artifactId> + <version>${net.java.dev.jna.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + <dependency> + <groupId>net.java.dev.jna</groupId> + <artifactId>jna-platform</artifactId> + <version>${net.java.dev.jna.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + <!-- Hutool鏄竴涓皬鑰屽叏鐨凧ava宸ュ叿绫诲簱(https://github.com/dromara/hutool) --> <dependency> <groupId>cn.hutool</groupId> @@ -327,7 +396,14 @@ <type>pom</type> <scope>import</scope> </dependency> - + <!--JWT浠ょ墝--> + <dependency> + <groupId>io.jsonwebtoken</groupId> + <artifactId>jjwt</artifactId> + <version>${jjwt.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> <!-- 娴嬭瘯 --> <dependency> <groupId>junit</groupId> -- Gitblit v1.8.0