From 88ac4c33e39d4e3bab5a3a4efb10b4d71e2440b5 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期四, 18 四月 2024 14:07:25 +0800 Subject: [PATCH] 阈值管理 --- pom.xml | 86 ++++++++++++++++++++++++------------------- 1 files changed, 48 insertions(+), 38 deletions(-) diff --git a/pom.xml b/pom.xml index ac7f7f8..c345219 100644 --- a/pom.xml +++ b/pom.xml @@ -19,9 +19,11 @@ <module>ycl-common</module> <module>ycl-server</module> <module>ycl-pojo</module> + <module>ycl-generator</module> </modules> <properties> + <spring-boot.version>3.0.6</spring-boot.version> <commons.io.version>2.13.0</commons.io.version> <bitwalker.version>1.21</bitwalker.version> <mybatis.spring.version>3.0.0</mybatis.spring.version> @@ -29,7 +31,7 @@ <fastjson.version>2.0.43</fastjson.version> <commons.lang.version>2.6</commons.lang.version> <druid.version>1.2.20</druid.version> - <pagehelper.version>1.3.0</pagehelper.version> + <pagehelper.boot.version>1.4.6</pagehelper.boot.version> <aliyun.sdk.oss.version>3.10.2</aliyun.sdk.oss.version> <knife4j.version>3.0.2</knife4j.version> <aspectj.version>1.9.4</aspectj.version> @@ -38,12 +40,15 @@ <jaxb-api.version>2.3.1</jaxb-api.version> <poi.version>4.1.2</poi.version> <hutool.version>5.8.22</hutool.version> + <oshi.version>6.4.0</oshi.version> <kaptcha.version>2.3.3</kaptcha.version> <easyexcel.version>3.3.2</easyexcel.version> <therapi-javadoc.version>0.15.0</therapi-javadoc.version> <spring-boot.version>3.0.6</spring-boot.version> <mapstruct-plus.version>1.3.5</mapstruct-plus.version> <mapstruct-plus.lombok.version>0.2.0</mapstruct-plus.lombok.version> + <velocity.version>2.3</velocity.version> + <commons.collections.version>3.2.2</commons.collections.version> <!-- 鎻掍欢鐗堟湰 --> <maven-jar-plugin.version>3.2.2</maven-jar-plugin.version> <maven-war-plugin.version>3.2.2</maven-war-plugin.version> @@ -74,18 +79,35 @@ </profiles> <dependencyManagement> <dependencies> + <!-- 鑾峰彇绯荤粺淇℃伅 --> + <dependency> + <groupId>com.github.oshi</groupId> + <artifactId>oshi-core</artifactId> + <version>${oshi.version}</version> + </dependency> <!-- 瑙f瀽瀹㈡埛绔搷浣滅郴缁熴�佹祻瑙堝櫒绛� --> <dependency> <groupId>eu.bitwalker</groupId> <artifactId>UserAgentUtils</artifactId> <version>${bitwalker.version}</version> </dependency> - + <!-- velocity浠g爜鐢熸垚浣跨敤妯℃澘 --> + <dependency> + <groupId>org.apache.velocity</groupId> + <artifactId>velocity-engine-core</artifactId> + <version>${velocity.version}</version> + </dependency> <!-- io甯哥敤宸ュ叿绫� --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons.io.version}</version> + </dependency> + <!-- collections宸ュ叿绫� --> + <dependency> + <groupId>commons-collections</groupId> + <artifactId>commons-collections</artifactId> + <version>${commons.collections.version}</version> </dependency> <!-- excel宸ュ叿 --> <dependency> @@ -104,12 +126,6 @@ </dependencyManagement> <dependencies> - <!-- Activiti7 --> - <dependency> - <groupId>org.activiti</groupId> - <artifactId>activiti-spring-boot-starter</artifactId> - <version>7.0.0.GA</version> - </dependency> <!-- jpa --> <dependency> <groupId>org.springframework.boot</groupId> @@ -126,6 +142,10 @@ <version>${mybatis.spring.version}</version> </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-data-mongodb</artifactId> + </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> @@ -151,10 +171,21 @@ <version>${druid.version}</version> </dependency> + <!-- pagehelper 鍒嗛〉鎻掍欢 --> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> - <version>${pagehelper.version}</version> + <version>${pagehelper.boot.version}</version> + <exclusions> + <exclusion> + <groupId>org.mybatis</groupId> + <artifactId>mybatis</artifactId> + </exclusion> + <exclusion> + <groupId>org.mybatis</groupId> + <artifactId>mybatis-spring</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> @@ -222,50 +253,29 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> - <version>${maven-compiler-plugin.verison}</version> + <version>3.8.0</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <encoding>${project.build.sourceEncoding}</encoding> <annotationProcessorPaths> + <!-- Lombok 娉ㄨВ澶勭悊鍣� --> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> - <version>${lombok.version}</version> + <version>1.18.26</version> </path> - <path> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-configuration-processor</artifactId> - <version>${spring-boot.version}</version> - </path> - <path> - <groupId>io.github.linpeilie</groupId> - <artifactId>mapstruct-plus-processor</artifactId> - <version>${mapstruct-plus.version}</version> - </path> + <!-- MapStruct 鍜� Lombok 娉ㄨВ缁戝畾澶勭悊鍣� --> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok-mapstruct-binding</artifactId> - <version>${mapstruct-plus.lombok.version}</version> + <version>0.2.0</version> </path> </annotationProcessorPaths> - <compilerArgs> - <arg>-parameters</arg> - </compilerArgs> </configuration> - </plugin> - <!-- 鍗曞厓娴嬭瘯浣跨敤 --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <version>${maven-surefire-plugin.version}</version> - <configuration> - <!-- 鏍规嵁鎵撳寘鐜鎵ц瀵瑰簲鐨凘Tag娴嬭瘯鏂规硶 --> - <groups>${profiles.active}</groups> - <!-- 鎺掗櫎鏍囩 --> - <excludedGroups>exclude</excludedGroups> - </configuration> + </plugin> </plugins> + <finalName>${project.artifactId}</finalName> </build> -</project> \ No newline at end of file +</project> -- Gitblit v1.8.0