From 3e4fb6b20cdb85b1bf290a88f68a4646915da78d Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期六, 03 八月 2024 11:06:52 +0800
Subject: [PATCH] 增加获取系统信息相关实用类,及相关依赖
---
pms-parent/pom.xml | 107 +++++++++++++++++++++++++++++++++++++++++++++++++----
1 files changed, 98 insertions(+), 9 deletions(-)
diff --git a/pms-parent/pom.xml b/pms-parent/pom.xml
index aa88ff1..4fd9c87 100644
--- a/pms-parent/pom.xml
+++ b/pms-parent/pom.xml
@@ -21,6 +21,14 @@
<modules>
<module>pms-common</module>
<module>pms-global</module>
+ <module>pms-web-base</module>
+ <module>pms-web-file</module>
+ <module>pms-web-other</module>
+ <module>pms-web-platform</module>
+ <module>pms-web-product</module>
+ <module>pms-web-report</module>
+ <module>pms-web-sso</module>
+ <module>pms-web-station</module>
</modules>
<properties>
@@ -38,6 +46,7 @@
<mybatis-spring.version>3.0.3</mybatis-spring.version>
<cglib.version>3.3.0</cglib.version>
<fastjson2.version>2.0.48</fastjson2.version>
+ <easyexcel.version>3.3.4</easyexcel.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>
@@ -48,6 +57,14 @@
<!-- sso鐢ㄥ埌鐨勭紦瀛樻鏋� -->
<spring-boot-starter-cache.version>3.2.4</spring-boot-starter-cache.version>
<caffeine.version>3.1.8</caffeine.version>
+ <!-- 鐢熸垚鍥剧墖缂╃暐鍥� -->
+ <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>
@@ -209,6 +226,14 @@
<type>pom</type>
<scope>import</scope>
</dependency>
+ <!-- 闃块噷EasyExcel -->
+ <dependency>
+ <groupId>com.alibaba</groupId>
+ <artifactId>easyexcel</artifactId>
+ <version>${easyexcel.version}</version>
+ <type>pom</type>
+ <scope>import</scope>
+ </dependency>
<!-- vo po杞崲 -->
<dependency>
<groupId>org.mapstruct</groupId>
@@ -237,16 +262,31 @@
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.yaml</groupId>
+ <artifactId>snakeyaml</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-context</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.alibaba.spring</groupId>
+ <artifactId>spring-context-support</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.alibaba.fastjson2</groupId>
+ <artifactId>fastjson2</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.alibaba</groupId>
+ <artifactId>hessian-lite</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.javassist</groupId>
+ <artifactId>javassist</artifactId>
+ </exclusion>
</exclusions>
- </dependency>
-
- <!-- Hutool鏄竴涓皬鑰屽叏鐨凧ava宸ュ叿绫诲簱(https://github.com/dromara/hutool) -->
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>${hutool-all.version}</version>
- <type>pom</type>
- <scope>import</scope>
</dependency>
<!-- jdom2 -->
@@ -267,6 +307,55 @@
<scope>import</scope>
</dependency>
+ <!-- zxing鐢熸垚浜岀淮鐮� -->
+ <dependency>
+ <groupId>com.google.zxing</groupId>
+ <artifactId>core</artifactId>
+ <version>${google.zxing.version}</version>
+ <type>pom</type>
+ <scope>import</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.google.zxing</groupId>
+ <artifactId>javase</artifactId>
+ <version>${google.zxing.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>
+ <artifactId>hutool-all</artifactId>
+ <version>${hutool-all.version}</version>
+ <type>pom</type>
+ <scope>import</scope>
+ </dependency>
+
<!-- 娴嬭瘯 -->
<dependency>
<groupId>junit</groupId>
--
Gitblit v1.8.0