mirror of
https://github.com/tiennm99/zfoo.git
synced 2026-05-26 20:01:17 +00:00
perf[maven]: upgrade maven dependencies
This commit is contained in:
+24
-35
@@ -11,56 +11,45 @@
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<properties>
|
||||
<zfoo.boot.version>3.0</zfoo.boot.version>
|
||||
<zfoo.event.version>3.0</zfoo.event.version>
|
||||
<zfoo.hotswap.version>3.0</zfoo.hotswap.version>
|
||||
<zfoo.monitor.version>3.0</zfoo.monitor.version>
|
||||
<zfoo.net.version>3.0</zfoo.net.version>
|
||||
<zfoo.scheduler.version>3.0</zfoo.scheduler.version>
|
||||
<zfoo.storage.version>3.0</zfoo.storage.version>
|
||||
<zfoo.orm.version>3.0</zfoo.orm.version>
|
||||
<zfoo.protocol.version>3.0</zfoo.protocol.version>
|
||||
<zfoo.util.version>3.0</zfoo.util.version>
|
||||
<zfoo.version>3.0</zfoo.version>
|
||||
|
||||
<!-- spring and spring boot -->
|
||||
<spring.version>5.3.19</spring.version>
|
||||
<spring.boot.version>2.6.7</spring.boot.version>
|
||||
<spring.version>6.0.11</spring.version>
|
||||
<spring.boot.version>3.1.3</spring.boot.version>
|
||||
<junit.version>4.12</junit.version>
|
||||
|
||||
<!-- bytecode enhancement(字节码增强) -->
|
||||
<javassist.version>3.29.2-GA</javassist.version>
|
||||
<bytebuddy.version>1.12.18</bytebuddy.version>
|
||||
<!-- json and xml, use the version of spring boot first -->
|
||||
<jackson.version>2.13.2</jackson.version>
|
||||
<bytebuddy.version>1.14.6</bytebuddy.version>
|
||||
|
||||
<!-- network framework -->
|
||||
<netty.version>4.1.84.Final</netty.version>
|
||||
<jprotobuf.version>2.4.17</jprotobuf.version>
|
||||
<netty.version>4.1.97.Final</netty.version>
|
||||
|
||||
<!-- zookeeper -->
|
||||
<curator.version>5.3.0</curator.version>
|
||||
<curator.version>5.5.0</curator.version>
|
||||
|
||||
<!-- hardware detection(硬件检测) -->
|
||||
<oshi.version>6.0.0</oshi.version>
|
||||
<oshi.version>6.4.5</oshi.version>
|
||||
|
||||
<!-- database and cache -->
|
||||
<mongodb-driver-sync.version>4.7.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>2.8.8</caffeine.version>
|
||||
<mongodb-driver-sync.version>4.10.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>3.1.8</caffeine.version>
|
||||
|
||||
<!-- Office document parsing(office文档解析包) -->
|
||||
<poi.version>5.2.3</poi.version>
|
||||
<csv.version>1.9.0</csv.version>
|
||||
<csv.version>1.10.0</csv.version>
|
||||
|
||||
<java.version>17</java.version>
|
||||
<file.encoding>UTF-8</file.encoding>
|
||||
|
||||
<!-- maven core plugin(maven核心插件) -->
|
||||
<maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.0</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
|
||||
<maven-clean-plugin.version>3.3.1</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
|
||||
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
|
||||
<maven-shade-plugin.version>3.4.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.12.0</versions-maven-plugin.version>
|
||||
<maven-shade-plugin.version>3.5.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.16.0</versions-maven-plugin.version>
|
||||
|
||||
<project.build.sourceEncoding>${file.encoding}</project.build.sourceEncoding>
|
||||
<maven.compiler.encoding>${file.encoding}</maven.compiler.encoding>
|
||||
@@ -83,43 +72,43 @@
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>net</artifactId>
|
||||
<version>${zfoo.net.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>orm</artifactId>
|
||||
<version>${zfoo.orm.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>event</artifactId>
|
||||
<version>${zfoo.event.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>scheduler</artifactId>
|
||||
<version>${zfoo.scheduler.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>storage</artifactId>
|
||||
<version>${zfoo.storage.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>hotswap</artifactId>
|
||||
<version>${zfoo.hotswap.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>monitor</artifactId>
|
||||
<version>${zfoo.monitor.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 依赖的测试库 -->
|
||||
|
||||
+18
-30
@@ -11,56 +11,45 @@
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<properties>
|
||||
<zfoo.boot.version>3.0</zfoo.boot.version>
|
||||
<zfoo.event.version>3.0</zfoo.event.version>
|
||||
<zfoo.hotswap.version>3.0</zfoo.hotswap.version>
|
||||
<zfoo.monitor.version>3.0</zfoo.monitor.version>
|
||||
<zfoo.net.version>3.0</zfoo.net.version>
|
||||
<zfoo.scheduler.version>3.0</zfoo.scheduler.version>
|
||||
<zfoo.storage.version>3.0</zfoo.storage.version>
|
||||
<zfoo.orm.version>3.0</zfoo.orm.version>
|
||||
<zfoo.protocol.version>3.0</zfoo.protocol.version>
|
||||
<zfoo.util.version>3.0</zfoo.util.version>
|
||||
<zfoo.version>3.0</zfoo.version>
|
||||
|
||||
<!-- spring and spring boot -->
|
||||
<spring.version>5.3.19</spring.version>
|
||||
<spring.boot.version>2.6.7</spring.boot.version>
|
||||
<spring.version>6.0.11</spring.version>
|
||||
<spring.boot.version>3.1.3</spring.boot.version>
|
||||
<junit.version>4.12</junit.version>
|
||||
|
||||
<!-- bytecode enhancement(字节码增强) -->
|
||||
<javassist.version>3.29.2-GA</javassist.version>
|
||||
<bytebuddy.version>1.12.18</bytebuddy.version>
|
||||
<!-- json and xml, use the version of spring boot first -->
|
||||
<jackson.version>2.13.2</jackson.version>
|
||||
<bytebuddy.version>1.14.6</bytebuddy.version>
|
||||
|
||||
<!-- network framework -->
|
||||
<netty.version>4.1.84.Final</netty.version>
|
||||
<jprotobuf.version>2.4.17</jprotobuf.version>
|
||||
<netty.version>4.1.97.Final</netty.version>
|
||||
|
||||
<!-- zookeeper -->
|
||||
<curator.version>5.3.0</curator.version>
|
||||
<curator.version>5.5.0</curator.version>
|
||||
|
||||
<!-- hardware detection(硬件检测) -->
|
||||
<oshi.version>6.0.0</oshi.version>
|
||||
<oshi.version>6.4.5</oshi.version>
|
||||
|
||||
<!-- database and cache -->
|
||||
<mongodb-driver-sync.version>4.7.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>2.8.8</caffeine.version>
|
||||
<mongodb-driver-sync.version>4.10.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>3.1.8</caffeine.version>
|
||||
|
||||
<!-- Office document parsing(office文档解析包) -->
|
||||
<poi.version>5.2.3</poi.version>
|
||||
<csv.version>1.9.0</csv.version>
|
||||
<csv.version>1.10.0</csv.version>
|
||||
|
||||
<java.version>17</java.version>
|
||||
<file.encoding>UTF-8</file.encoding>
|
||||
|
||||
<!-- maven core plugin(maven核心插件) -->
|
||||
<maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.0</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
|
||||
<maven-clean-plugin.version>3.3.1</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
|
||||
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
|
||||
<maven-shade-plugin.version>3.4.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.12.0</versions-maven-plugin.version>
|
||||
<maven-shade-plugin.version>3.5.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.16.0</versions-maven-plugin.version>
|
||||
|
||||
<project.build.sourceEncoding>${file.encoding}</project.build.sourceEncoding>
|
||||
<maven.compiler.encoding>${file.encoding}</maven.compiler.encoding>
|
||||
@@ -70,7 +59,7 @@
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>util</artifactId>
|
||||
<version>${zfoo.util.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
@@ -89,7 +78,6 @@
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-logging</artifactId>
|
||||
<version>${spring.boot.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
+19
-30
@@ -11,56 +11,45 @@
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<properties>
|
||||
<zfoo.boot.version>3.0</zfoo.boot.version>
|
||||
<zfoo.event.version>3.0</zfoo.event.version>
|
||||
<zfoo.hotswap.version>3.0</zfoo.hotswap.version>
|
||||
<zfoo.monitor.version>3.0</zfoo.monitor.version>
|
||||
<zfoo.net.version>3.0</zfoo.net.version>
|
||||
<zfoo.scheduler.version>3.0</zfoo.scheduler.version>
|
||||
<zfoo.storage.version>3.0</zfoo.storage.version>
|
||||
<zfoo.orm.version>3.0</zfoo.orm.version>
|
||||
<zfoo.protocol.version>3.0</zfoo.protocol.version>
|
||||
<zfoo.util.version>3.0</zfoo.util.version>
|
||||
<zfoo.version>3.0</zfoo.version>
|
||||
|
||||
<!-- spring and spring boot -->
|
||||
<spring.version>5.3.19</spring.version>
|
||||
<spring.boot.version>2.6.7</spring.boot.version>
|
||||
<spring.version>6.0.11</spring.version>
|
||||
<spring.boot.version>3.1.3</spring.boot.version>
|
||||
<junit.version>4.12</junit.version>
|
||||
|
||||
<!-- bytecode enhancement(字节码增强) -->
|
||||
<javassist.version>3.29.2-GA</javassist.version>
|
||||
<bytebuddy.version>1.12.18</bytebuddy.version>
|
||||
<!-- json and xml, use the version of spring boot first -->
|
||||
<jackson.version>2.13.2</jackson.version>
|
||||
<bytebuddy.version>1.14.6</bytebuddy.version>
|
||||
|
||||
<!-- network framework -->
|
||||
<netty.version>4.1.84.Final</netty.version>
|
||||
<jprotobuf.version>2.4.17</jprotobuf.version>
|
||||
<netty.version>4.1.97.Final</netty.version>
|
||||
|
||||
<!-- zookeeper -->
|
||||
<curator.version>5.3.0</curator.version>
|
||||
<curator.version>5.5.0</curator.version>
|
||||
|
||||
<!-- hardware detection(硬件检测) -->
|
||||
<oshi.version>6.0.0</oshi.version>
|
||||
<oshi.version>6.4.5</oshi.version>
|
||||
|
||||
<!-- database and cache -->
|
||||
<mongodb-driver-sync.version>4.7.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>2.8.8</caffeine.version>
|
||||
<mongodb-driver-sync.version>4.10.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>3.1.8</caffeine.version>
|
||||
|
||||
<!-- Office document parsing(office文档解析包) -->
|
||||
<poi.version>5.2.3</poi.version>
|
||||
<csv.version>1.9.0</csv.version>
|
||||
<csv.version>1.10.0</csv.version>
|
||||
|
||||
<java.version>17</java.version>
|
||||
<file.encoding>UTF-8</file.encoding>
|
||||
|
||||
<!-- maven core plugin(maven核心插件) -->
|
||||
<maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.0</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
|
||||
<maven-clean-plugin.version>3.3.1</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
|
||||
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
|
||||
<maven-shade-plugin.version>3.4.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.12.0</versions-maven-plugin.version>
|
||||
<maven-shade-plugin.version>3.5.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.16.0</versions-maven-plugin.version>
|
||||
|
||||
<project.build.sourceEncoding>${file.encoding}</project.build.sourceEncoding>
|
||||
<maven.compiler.encoding>${file.encoding}</maven.compiler.encoding>
|
||||
@@ -70,13 +59,13 @@
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>util</artifactId>
|
||||
<version>${zfoo.util.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>scheduler</artifactId>
|
||||
<version>${zfoo.scheduler.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
+19
-31
@@ -11,66 +11,54 @@
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<properties>
|
||||
<zfoo.boot.version>3.0</zfoo.boot.version>
|
||||
<zfoo.event.version>3.0</zfoo.event.version>
|
||||
<zfoo.hotswap.version>3.0</zfoo.hotswap.version>
|
||||
<zfoo.monitor.version>3.0</zfoo.monitor.version>
|
||||
<zfoo.net.version>3.0</zfoo.net.version>
|
||||
<zfoo.scheduler.version>3.0</zfoo.scheduler.version>
|
||||
<zfoo.storage.version>3.0</zfoo.storage.version>
|
||||
<zfoo.orm.version>3.0</zfoo.orm.version>
|
||||
<zfoo.protocol.version>3.0</zfoo.protocol.version>
|
||||
<zfoo.util.version>3.0</zfoo.util.version>
|
||||
<zfoo.version>3.0</zfoo.version>
|
||||
|
||||
<!-- spring and spring boot -->
|
||||
<spring.version>5.3.19</spring.version>
|
||||
<spring.boot.version>2.6.7</spring.boot.version>
|
||||
<spring.version>6.0.11</spring.version>
|
||||
<spring.boot.version>3.1.3</spring.boot.version>
|
||||
<junit.version>4.12</junit.version>
|
||||
|
||||
<!-- bytecode enhancement(字节码增强) -->
|
||||
<javassist.version>3.29.2-GA</javassist.version>
|
||||
<bytebuddy.version>1.12.18</bytebuddy.version>
|
||||
<!-- json and xml, use the version of spring boot first -->
|
||||
<jackson.version>2.13.2</jackson.version>
|
||||
<bytebuddy.version>1.14.6</bytebuddy.version>
|
||||
|
||||
<!-- network framework -->
|
||||
<netty.version>4.1.84.Final</netty.version>
|
||||
<jprotobuf.version>2.4.17</jprotobuf.version>
|
||||
<netty.version>4.1.97.Final</netty.version>
|
||||
|
||||
<!-- zookeeper -->
|
||||
<curator.version>5.3.0</curator.version>
|
||||
<curator.version>5.5.0</curator.version>
|
||||
|
||||
<!-- hardware detection(硬件检测) -->
|
||||
<oshi.version>6.0.0</oshi.version>
|
||||
<oshi.version>6.4.5</oshi.version>
|
||||
|
||||
<!-- database and cache -->
|
||||
<mongodb-driver-sync.version>4.7.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>2.8.8</caffeine.version>
|
||||
<mongodb-driver-sync.version>4.10.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>3.1.8</caffeine.version>
|
||||
|
||||
<!-- Office document parsing(office文档解析包) -->
|
||||
<poi.version>5.2.3</poi.version>
|
||||
<csv.version>1.9.0</csv.version>
|
||||
<csv.version>1.10.0</csv.version>
|
||||
|
||||
<java.version>17</java.version>
|
||||
<file.encoding>UTF-8</file.encoding>
|
||||
|
||||
<!-- maven core plugin(maven核心插件) -->
|
||||
<maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.0</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
|
||||
<maven-clean-plugin.version>3.3.1</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
|
||||
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
|
||||
<maven-shade-plugin.version>3.4.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.12.0</versions-maven-plugin.version>
|
||||
<maven-shade-plugin.version>3.5.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.16.0</versions-maven-plugin.version>
|
||||
|
||||
<project.build.sourceEncoding>${file.encoding}</project.build.sourceEncoding>
|
||||
<maven.compiler.encoding>${file.encoding}</maven.compiler.encoding>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>util</artifactId>
|
||||
<version>${zfoo.util.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
@@ -88,7 +76,7 @@
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>scheduler</artifactId>
|
||||
<version>${zfoo.scheduler.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
+21
-32
@@ -11,56 +11,45 @@
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<properties>
|
||||
<zfoo.boot.version>3.0</zfoo.boot.version>
|
||||
<zfoo.event.version>3.0</zfoo.event.version>
|
||||
<zfoo.hotswap.version>3.0</zfoo.hotswap.version>
|
||||
<zfoo.monitor.version>3.0</zfoo.monitor.version>
|
||||
<zfoo.net.version>3.0</zfoo.net.version>
|
||||
<zfoo.scheduler.version>3.0</zfoo.scheduler.version>
|
||||
<zfoo.storage.version>3.0</zfoo.storage.version>
|
||||
<zfoo.orm.version>3.0</zfoo.orm.version>
|
||||
<zfoo.protocol.version>3.0</zfoo.protocol.version>
|
||||
<zfoo.util.version>3.0</zfoo.util.version>
|
||||
<zfoo.version>3.0</zfoo.version>
|
||||
|
||||
<!-- spring and spring boot -->
|
||||
<spring.version>5.3.19</spring.version>
|
||||
<spring.boot.version>2.6.7</spring.boot.version>
|
||||
<spring.version>6.0.11</spring.version>
|
||||
<spring.boot.version>3.1.3</spring.boot.version>
|
||||
<junit.version>4.12</junit.version>
|
||||
|
||||
<!-- bytecode enhancement(字节码增强) -->
|
||||
<javassist.version>3.29.2-GA</javassist.version>
|
||||
<bytebuddy.version>1.12.18</bytebuddy.version>
|
||||
<!-- json and xml, use the version of spring boot first -->
|
||||
<jackson.version>2.13.2</jackson.version>
|
||||
<bytebuddy.version>1.14.6</bytebuddy.version>
|
||||
|
||||
<!-- network framework -->
|
||||
<netty.version>4.1.84.Final</netty.version>
|
||||
<jprotobuf.version>2.4.17</jprotobuf.version>
|
||||
<netty.version>4.1.97.Final</netty.version>
|
||||
|
||||
<!-- zookeeper -->
|
||||
<curator.version>5.3.0</curator.version>
|
||||
<curator.version>5.5.0</curator.version>
|
||||
|
||||
<!-- hardware detection(硬件检测) -->
|
||||
<oshi.version>6.0.0</oshi.version>
|
||||
<oshi.version>6.4.5</oshi.version>
|
||||
|
||||
<!-- database and cache -->
|
||||
<mongodb-driver-sync.version>4.7.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>2.8.8</caffeine.version>
|
||||
<mongodb-driver-sync.version>4.10.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>3.1.8</caffeine.version>
|
||||
|
||||
<!-- Office document parsing(office文档解析包) -->
|
||||
<poi.version>5.2.3</poi.version>
|
||||
<csv.version>1.9.0</csv.version>
|
||||
<csv.version>1.10.0</csv.version>
|
||||
|
||||
<java.version>17</java.version>
|
||||
<file.encoding>UTF-8</file.encoding>
|
||||
|
||||
<!-- maven core plugin(maven核心插件) -->
|
||||
<maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.0</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
|
||||
<maven-clean-plugin.version>3.3.1</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
|
||||
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
|
||||
<maven-shade-plugin.version>3.4.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.12.0</versions-maven-plugin.version>
|
||||
<maven-shade-plugin.version>3.5.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.16.0</versions-maven-plugin.version>
|
||||
|
||||
<project.build.sourceEncoding>${file.encoding}</project.build.sourceEncoding>
|
||||
<maven.compiler.encoding>${file.encoding}</maven.compiler.encoding>
|
||||
@@ -70,22 +59,22 @@
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>util</artifactId>
|
||||
<version>${zfoo.util.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>event</artifactId>
|
||||
<version>${zfoo.event.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>scheduler</artifactId>
|
||||
<version>${zfoo.util.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>protocol</artifactId>
|
||||
<version>${zfoo.protocol.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 依赖的通信类库 -->
|
||||
|
||||
+20
-31
@@ -11,56 +11,45 @@
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<properties>
|
||||
<zfoo.boot.version>3.0</zfoo.boot.version>
|
||||
<zfoo.event.version>3.0</zfoo.event.version>
|
||||
<zfoo.hotswap.version>3.0</zfoo.hotswap.version>
|
||||
<zfoo.monitor.version>3.0</zfoo.monitor.version>
|
||||
<zfoo.net.version>3.0</zfoo.net.version>
|
||||
<zfoo.scheduler.version>3.0</zfoo.scheduler.version>
|
||||
<zfoo.storage.version>3.0</zfoo.storage.version>
|
||||
<zfoo.orm.version>3.0</zfoo.orm.version>
|
||||
<zfoo.protocol.version>3.0</zfoo.protocol.version>
|
||||
<zfoo.util.version>3.0</zfoo.util.version>
|
||||
<zfoo.version>3.0</zfoo.version>
|
||||
|
||||
<!-- spring and spring boot -->
|
||||
<spring.version>5.3.19</spring.version>
|
||||
<spring.boot.version>2.6.7</spring.boot.version>
|
||||
<spring.version>6.0.11</spring.version>
|
||||
<spring.boot.version>3.1.3</spring.boot.version>
|
||||
<junit.version>4.12</junit.version>
|
||||
|
||||
<!-- bytecode enhancement(字节码增强) -->
|
||||
<javassist.version>3.29.2-GA</javassist.version>
|
||||
<bytebuddy.version>1.12.18</bytebuddy.version>
|
||||
<!-- json and xml, use the version of spring boot first -->
|
||||
<jackson.version>2.13.2</jackson.version>
|
||||
<bytebuddy.version>1.14.6</bytebuddy.version>
|
||||
|
||||
<!-- network framework -->
|
||||
<netty.version>4.1.84.Final</netty.version>
|
||||
<jprotobuf.version>2.4.17</jprotobuf.version>
|
||||
<netty.version>4.1.97.Final</netty.version>
|
||||
|
||||
<!-- zookeeper -->
|
||||
<curator.version>5.3.0</curator.version>
|
||||
<curator.version>5.5.0</curator.version>
|
||||
|
||||
<!-- hardware detection(硬件检测) -->
|
||||
<oshi.version>6.0.0</oshi.version>
|
||||
<oshi.version>6.4.5</oshi.version>
|
||||
|
||||
<!-- database and cache -->
|
||||
<mongodb-driver-sync.version>4.7.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>2.8.8</caffeine.version>
|
||||
<mongodb-driver-sync.version>4.10.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>3.1.8</caffeine.version>
|
||||
|
||||
<!-- Office document parsing(office文档解析包) -->
|
||||
<poi.version>5.2.3</poi.version>
|
||||
<csv.version>1.9.0</csv.version>
|
||||
<csv.version>1.10.0</csv.version>
|
||||
|
||||
<java.version>17</java.version>
|
||||
<file.encoding>UTF-8</file.encoding>
|
||||
|
||||
<!-- maven core plugin(maven核心插件) -->
|
||||
<maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.0</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
|
||||
<maven-clean-plugin.version>3.3.1</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
|
||||
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
|
||||
<maven-shade-plugin.version>3.4.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.12.0</versions-maven-plugin.version>
|
||||
<maven-shade-plugin.version>3.5.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.16.0</versions-maven-plugin.version>
|
||||
|
||||
<project.build.sourceEncoding>${file.encoding}</project.build.sourceEncoding>
|
||||
<maven.compiler.encoding>${file.encoding}</maven.compiler.encoding>
|
||||
@@ -71,19 +60,19 @@
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>util</artifactId>
|
||||
<version>${zfoo.util.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>event</artifactId>
|
||||
<version>${zfoo.event.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>scheduler</artifactId>
|
||||
<version>${zfoo.scheduler.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
@@ -35,57 +35,45 @@
|
||||
</modules>
|
||||
|
||||
<properties>
|
||||
<zfoo.boot.version>3.0</zfoo.boot.version>
|
||||
<zfoo.event.version>3.0</zfoo.event.version>
|
||||
<zfoo.hotswap.version>3.0</zfoo.hotswap.version>
|
||||
<zfoo.monitor.version>3.0</zfoo.monitor.version>
|
||||
<zfoo.net.version>3.0</zfoo.net.version>
|
||||
<zfoo.scheduler.version>3.0</zfoo.scheduler.version>
|
||||
<zfoo.storage.version>3.0</zfoo.storage.version>
|
||||
<zfoo.orm.version>3.0</zfoo.orm.version>
|
||||
<zfoo.protocol.version>3.0</zfoo.protocol.version>
|
||||
<zfoo.util.version>3.0</zfoo.util.version>
|
||||
<zfoo.version>3.0</zfoo.version>
|
||||
|
||||
<!-- spring and spring boot -->
|
||||
<spring.version>5.3.19</spring.version>
|
||||
<spring.boot.version>2.6.7</spring.boot.version>
|
||||
<spring.version>6.0.11</spring.version>
|
||||
<spring.boot.version>3.1.3</spring.boot.version>
|
||||
<junit.version>4.12</junit.version>
|
||||
|
||||
<!-- bytecode enhancement(字节码增强) -->
|
||||
<javassist.version>3.29.2-GA</javassist.version>
|
||||
<bytebuddy.version>1.12.18</bytebuddy.version>
|
||||
<!-- json and xml, use the version of spring boot first -->
|
||||
<jackson.version>2.13.2</jackson.version>
|
||||
<!-- network framework -->
|
||||
<netty.version>4.1.84.Final</netty.version>
|
||||
<jprotobuf.version>2.4.17</jprotobuf.version>
|
||||
<bytebuddy.version>1.14.6</bytebuddy.version>
|
||||
|
||||
<!-- network framework -->
|
||||
<netty.version>4.1.97.Final</netty.version>
|
||||
|
||||
<!-- zookeeper -->
|
||||
<curator.version>5.3.0</curator.version>
|
||||
<curator.version>5.5.0</curator.version>
|
||||
|
||||
<!-- hardware detection(硬件检测) -->
|
||||
<oshi.version>6.0.0</oshi.version>
|
||||
<oshi.version>6.4.5</oshi.version>
|
||||
|
||||
<!-- database and cache -->
|
||||
<mongodb-driver-sync.version>4.7.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>2.8.8</caffeine.version>
|
||||
<mongodb-driver-sync.version>4.10.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>3.1.8</caffeine.version>
|
||||
|
||||
<!-- Office document parsing(office文档解析包) -->
|
||||
<poi.version>5.2.3</poi.version>
|
||||
<csv.version>1.9.0</csv.version>
|
||||
<csv.version>1.10.0</csv.version>
|
||||
|
||||
<java.version>17</java.version>
|
||||
<file.encoding>UTF-8</file.encoding>
|
||||
|
||||
<!-- maven core plugin(maven核心插件) -->
|
||||
<maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.0</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
|
||||
<maven-clean-plugin.version>3.3.1</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
|
||||
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
|
||||
<maven-shade-plugin.version>3.4.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.12.0</versions-maven-plugin.version>
|
||||
<maven-shade-plugin.version>3.5.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.16.0</versions-maven-plugin.version>
|
||||
|
||||
<project.build.sourceEncoding>${file.encoding}</project.build.sourceEncoding>
|
||||
<maven.compiler.encoding>${file.encoding}</maven.compiler.encoding>
|
||||
|
||||
+43
-67
@@ -11,62 +11,64 @@
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<properties>
|
||||
<zfoo.boot.version>3.0</zfoo.boot.version>
|
||||
<zfoo.event.version>3.0</zfoo.event.version>
|
||||
<zfoo.hotswap.version>3.0</zfoo.hotswap.version>
|
||||
<zfoo.monitor.version>3.0</zfoo.monitor.version>
|
||||
<zfoo.net.version>3.0</zfoo.net.version>
|
||||
<zfoo.scheduler.version>3.0</zfoo.scheduler.version>
|
||||
<zfoo.storage.version>3.0</zfoo.storage.version>
|
||||
<zfoo.orm.version>3.0</zfoo.orm.version>
|
||||
<zfoo.protocol.version>3.0</zfoo.protocol.version>
|
||||
<zfoo.util.version>3.0</zfoo.util.version>
|
||||
<zfoo.version>3.0</zfoo.version>
|
||||
|
||||
<!-- spring and spring boot -->
|
||||
<spring.version>5.3.19</spring.version>
|
||||
<spring.boot.version>2.6.7</spring.boot.version>
|
||||
<spring.version>6.0.11</spring.version>
|
||||
<spring.boot.version>3.1.3</spring.boot.version>
|
||||
<junit.version>4.12</junit.version>
|
||||
|
||||
<!-- bytecode enhancement(字节码增强) -->
|
||||
<javassist.version>3.29.2-GA</javassist.version>
|
||||
<bytebuddy.version>1.12.18</bytebuddy.version>
|
||||
<!-- json and xml, use the version of spring boot first -->
|
||||
<jackson.version>2.13.2</jackson.version>
|
||||
<bytebuddy.version>1.14.6</bytebuddy.version>
|
||||
|
||||
<!-- network framework -->
|
||||
<netty.version>4.1.84.Final</netty.version>
|
||||
<jprotobuf.version>2.4.17</jprotobuf.version>
|
||||
<netty.version>4.1.97.Final</netty.version>
|
||||
|
||||
<!-- zookeeper -->
|
||||
<curator.version>5.3.0</curator.version>
|
||||
<curator.version>5.5.0</curator.version>
|
||||
|
||||
<!-- hardware detection(硬件检测) -->
|
||||
<oshi.version>6.0.0</oshi.version>
|
||||
<oshi.version>6.4.5</oshi.version>
|
||||
|
||||
<!-- database and cache -->
|
||||
<mongodb-driver-sync.version>4.7.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>2.8.8</caffeine.version>
|
||||
<mongodb-driver-sync.version>4.10.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>3.1.8</caffeine.version>
|
||||
|
||||
<!-- Office document parsing(office文档解析包) -->
|
||||
<poi.version>5.2.3</poi.version>
|
||||
<csv.version>1.9.0</csv.version>
|
||||
<csv.version>1.10.0</csv.version>
|
||||
|
||||
<java.version>17</java.version>
|
||||
<file.encoding>UTF-8</file.encoding>
|
||||
|
||||
<!-- maven core plugin(maven核心插件) -->
|
||||
<maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.0</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
|
||||
<maven-clean-plugin.version>3.3.1</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
|
||||
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
|
||||
<maven-shade-plugin.version>3.4.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.12.0</versions-maven-plugin.version>
|
||||
<maven-shade-plugin.version>3.5.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.16.0</versions-maven-plugin.version>
|
||||
|
||||
<project.build.sourceEncoding>${file.encoding}</project.build.sourceEncoding>
|
||||
<maven.compiler.encoding>${file.encoding}</maven.compiler.encoding>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-json</artifactId>
|
||||
<version>${spring.boot.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-logging</artifactId>
|
||||
<version>${spring.boot.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>io.netty</groupId>
|
||||
<artifactId>netty-buffer</artifactId>
|
||||
@@ -79,41 +81,10 @@
|
||||
<version>${javassist.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Json library -->
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-annotations</artifactId>
|
||||
<version>${jackson.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-core</artifactId>
|
||||
<version>${jackson.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-databind</artifactId>
|
||||
<version>${jackson.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Jackson parsing XML library -->
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||||
<artifactId>jackson-dataformat-xml</artifactId>
|
||||
<version>${jackson.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- json,bytecode generation to replace use of Reflection for field access and method calls(Jackson涡轮增压,字节码增强解析json) -->
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.module</groupId>
|
||||
<artifactId>jackson-module-afterburner</artifactId>
|
||||
<version>${jackson.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.baidu</groupId>
|
||||
<artifactId>jprotobuf</artifactId>
|
||||
<version>${jprotobuf.version}</version>
|
||||
<version>2.4.19</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>slf4j-api</artifactId>
|
||||
@@ -122,6 +93,18 @@
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<!-- json,bytecode generation to replace use of Reflection for field access and method calls(Jackson涡轮增压,字节码增强解析json) -->
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.module</groupId>
|
||||
<artifactId>jackson-module-afterburner</artifactId>
|
||||
<version>2.15.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||||
<artifactId>jackson-dataformat-xml</artifactId>
|
||||
<version>2.15.2</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.esotericsoftware</groupId>
|
||||
<artifactId>kryo</artifactId>
|
||||
@@ -142,13 +125,6 @@
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-logging</artifactId>
|
||||
<version>${spring.boot.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
|
||||
+18
-29
@@ -11,56 +11,45 @@
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<properties>
|
||||
<zfoo.boot.version>3.0</zfoo.boot.version>
|
||||
<zfoo.event.version>3.0</zfoo.event.version>
|
||||
<zfoo.hotswap.version>3.0</zfoo.hotswap.version>
|
||||
<zfoo.monitor.version>3.0</zfoo.monitor.version>
|
||||
<zfoo.net.version>3.0</zfoo.net.version>
|
||||
<zfoo.scheduler.version>3.0</zfoo.scheduler.version>
|
||||
<zfoo.storage.version>3.0</zfoo.storage.version>
|
||||
<zfoo.orm.version>3.0</zfoo.orm.version>
|
||||
<zfoo.protocol.version>3.0</zfoo.protocol.version>
|
||||
<zfoo.util.version>3.0</zfoo.util.version>
|
||||
<zfoo.version>3.0</zfoo.version>
|
||||
|
||||
<!-- spring and spring boot -->
|
||||
<spring.version>5.3.19</spring.version>
|
||||
<spring.boot.version>2.6.7</spring.boot.version>
|
||||
<spring.version>6.0.11</spring.version>
|
||||
<spring.boot.version>3.1.3</spring.boot.version>
|
||||
<junit.version>4.12</junit.version>
|
||||
|
||||
<!-- bytecode enhancement(字节码增强) -->
|
||||
<javassist.version>3.29.2-GA</javassist.version>
|
||||
<bytebuddy.version>1.12.18</bytebuddy.version>
|
||||
<!-- json and xml, use the version of spring boot first -->
|
||||
<jackson.version>2.13.2</jackson.version>
|
||||
<bytebuddy.version>1.14.6</bytebuddy.version>
|
||||
|
||||
<!-- network framework -->
|
||||
<netty.version>4.1.84.Final</netty.version>
|
||||
<jprotobuf.version>2.4.17</jprotobuf.version>
|
||||
<netty.version>4.1.97.Final</netty.version>
|
||||
|
||||
<!-- zookeeper -->
|
||||
<curator.version>5.3.0</curator.version>
|
||||
<curator.version>5.5.0</curator.version>
|
||||
|
||||
<!-- hardware detection(硬件检测) -->
|
||||
<oshi.version>6.0.0</oshi.version>
|
||||
<oshi.version>6.4.5</oshi.version>
|
||||
|
||||
<!-- database and cache -->
|
||||
<mongodb-driver-sync.version>4.7.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>2.8.8</caffeine.version>
|
||||
<mongodb-driver-sync.version>4.10.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>3.1.8</caffeine.version>
|
||||
|
||||
<!-- Office document parsing(office文档解析包) -->
|
||||
<poi.version>5.2.3</poi.version>
|
||||
<csv.version>1.9.0</csv.version>
|
||||
<csv.version>1.10.0</csv.version>
|
||||
|
||||
<java.version>17</java.version>
|
||||
<file.encoding>UTF-8</file.encoding>
|
||||
|
||||
<!-- maven core plugin(maven核心插件) -->
|
||||
<maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.0</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
|
||||
<maven-clean-plugin.version>3.3.1</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
|
||||
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
|
||||
<maven-shade-plugin.version>3.4.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.12.0</versions-maven-plugin.version>
|
||||
<maven-shade-plugin.version>3.5.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.16.0</versions-maven-plugin.version>
|
||||
|
||||
<project.build.sourceEncoding>${file.encoding}</project.build.sourceEncoding>
|
||||
<maven.compiler.encoding>${file.encoding}</maven.compiler.encoding>
|
||||
@@ -70,7 +59,7 @@
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>util</artifactId>
|
||||
<version>${zfoo.util.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
+19
-30
@@ -11,56 +11,45 @@
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<properties>
|
||||
<zfoo.boot.version>3.0</zfoo.boot.version>
|
||||
<zfoo.event.version>3.0</zfoo.event.version>
|
||||
<zfoo.hotswap.version>3.0</zfoo.hotswap.version>
|
||||
<zfoo.monitor.version>3.0</zfoo.monitor.version>
|
||||
<zfoo.net.version>3.0</zfoo.net.version>
|
||||
<zfoo.scheduler.version>3.0</zfoo.scheduler.version>
|
||||
<zfoo.storage.version>3.0</zfoo.storage.version>
|
||||
<zfoo.orm.version>3.0</zfoo.orm.version>
|
||||
<zfoo.protocol.version>3.0</zfoo.protocol.version>
|
||||
<zfoo.util.version>3.0</zfoo.util.version>
|
||||
<zfoo.version>3.0</zfoo.version>
|
||||
|
||||
<!-- spring and spring boot -->
|
||||
<spring.version>5.3.19</spring.version>
|
||||
<spring.boot.version>2.6.7</spring.boot.version>
|
||||
<spring.version>6.0.11</spring.version>
|
||||
<spring.boot.version>3.1.3</spring.boot.version>
|
||||
<junit.version>4.12</junit.version>
|
||||
|
||||
<!-- bytecode enhancement(字节码增强) -->
|
||||
<javassist.version>3.29.2-GA</javassist.version>
|
||||
<bytebuddy.version>1.12.18</bytebuddy.version>
|
||||
<!-- json and xml, use the version of spring boot first -->
|
||||
<jackson.version>2.13.2</jackson.version>
|
||||
<bytebuddy.version>1.14.6</bytebuddy.version>
|
||||
|
||||
<!-- network framework -->
|
||||
<netty.version>4.1.84.Final</netty.version>
|
||||
<jprotobuf.version>2.4.17</jprotobuf.version>
|
||||
<netty.version>4.1.97.Final</netty.version>
|
||||
|
||||
<!-- zookeeper -->
|
||||
<curator.version>5.3.0</curator.version>
|
||||
<curator.version>5.5.0</curator.version>
|
||||
|
||||
<!-- hardware detection(硬件检测) -->
|
||||
<oshi.version>6.0.0</oshi.version>
|
||||
<oshi.version>6.4.5</oshi.version>
|
||||
|
||||
<!-- database and cache -->
|
||||
<mongodb-driver-sync.version>4.7.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>2.8.8</caffeine.version>
|
||||
<mongodb-driver-sync.version>4.10.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>3.1.8</caffeine.version>
|
||||
|
||||
<!-- Office document parsing(office文档解析包) -->
|
||||
<poi.version>5.2.3</poi.version>
|
||||
<csv.version>1.9.0</csv.version>
|
||||
<csv.version>1.10.0</csv.version>
|
||||
|
||||
<java.version>17</java.version>
|
||||
<file.encoding>UTF-8</file.encoding>
|
||||
|
||||
<!-- maven core plugin(maven核心插件) -->
|
||||
<maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.0</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
|
||||
<maven-clean-plugin.version>3.3.1</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
|
||||
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
|
||||
<maven-shade-plugin.version>3.4.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.12.0</versions-maven-plugin.version>
|
||||
<maven-shade-plugin.version>3.5.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.16.0</versions-maven-plugin.version>
|
||||
|
||||
<project.build.sourceEncoding>${file.encoding}</project.build.sourceEncoding>
|
||||
<maven.compiler.encoding>${file.encoding}</maven.compiler.encoding>
|
||||
@@ -70,13 +59,13 @@
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>scheduler</artifactId>
|
||||
<version>${zfoo.util.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>util</artifactId>
|
||||
<version>${zfoo.util.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
+18
-29
@@ -11,56 +11,45 @@
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<properties>
|
||||
<zfoo.boot.version>3.0</zfoo.boot.version>
|
||||
<zfoo.event.version>3.0</zfoo.event.version>
|
||||
<zfoo.hotswap.version>3.0</zfoo.hotswap.version>
|
||||
<zfoo.monitor.version>3.0</zfoo.monitor.version>
|
||||
<zfoo.net.version>3.0</zfoo.net.version>
|
||||
<zfoo.scheduler.version>3.0</zfoo.scheduler.version>
|
||||
<zfoo.storage.version>3.0</zfoo.storage.version>
|
||||
<zfoo.orm.version>3.0</zfoo.orm.version>
|
||||
<zfoo.protocol.version>3.0</zfoo.protocol.version>
|
||||
<zfoo.util.version>3.0</zfoo.util.version>
|
||||
<zfoo.version>3.0</zfoo.version>
|
||||
|
||||
<!-- spring and spring boot -->
|
||||
<spring.version>5.3.19</spring.version>
|
||||
<spring.boot.version>2.6.7</spring.boot.version>
|
||||
<spring.version>6.0.11</spring.version>
|
||||
<spring.boot.version>3.1.3</spring.boot.version>
|
||||
<junit.version>4.12</junit.version>
|
||||
|
||||
<!-- bytecode enhancement(字节码增强) -->
|
||||
<javassist.version>3.29.2-GA</javassist.version>
|
||||
<bytebuddy.version>1.12.18</bytebuddy.version>
|
||||
<!-- json and xml, use the version of spring boot first -->
|
||||
<jackson.version>2.13.2</jackson.version>
|
||||
<bytebuddy.version>1.14.6</bytebuddy.version>
|
||||
|
||||
<!-- network framework -->
|
||||
<netty.version>4.1.84.Final</netty.version>
|
||||
<jprotobuf.version>2.4.17</jprotobuf.version>
|
||||
<netty.version>4.1.97.Final</netty.version>
|
||||
|
||||
<!-- zookeeper -->
|
||||
<curator.version>5.3.0</curator.version>
|
||||
<curator.version>5.5.0</curator.version>
|
||||
|
||||
<!-- hardware detection(硬件检测) -->
|
||||
<oshi.version>6.0.0</oshi.version>
|
||||
<oshi.version>6.4.5</oshi.version>
|
||||
|
||||
<!-- database and cache -->
|
||||
<mongodb-driver-sync.version>4.7.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>2.8.8</caffeine.version>
|
||||
<mongodb-driver-sync.version>4.10.2</mongodb-driver-sync.version>
|
||||
<caffeine.version>3.1.8</caffeine.version>
|
||||
|
||||
<!-- Office document parsing(office文档解析包) -->
|
||||
<poi.version>5.2.3</poi.version>
|
||||
<csv.version>1.9.0</csv.version>
|
||||
<csv.version>1.10.0</csv.version>
|
||||
|
||||
<java.version>17</java.version>
|
||||
<file.encoding>UTF-8</file.encoding>
|
||||
|
||||
<!-- maven core plugin(maven核心插件) -->
|
||||
<maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.0</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
|
||||
<maven-clean-plugin.version>3.3.1</maven-clean-plugin.version>
|
||||
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
|
||||
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
|
||||
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
|
||||
<maven-shade-plugin.version>3.4.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.12.0</versions-maven-plugin.version>
|
||||
<maven-shade-plugin.version>3.5.0</maven-shade-plugin.version>
|
||||
<versions-maven-plugin.version>2.16.0</versions-maven-plugin.version>
|
||||
|
||||
<project.build.sourceEncoding>${file.encoding}</project.build.sourceEncoding>
|
||||
<maven.compiler.encoding>${file.encoding}</maven.compiler.encoding>
|
||||
@@ -70,7 +59,7 @@
|
||||
<dependency>
|
||||
<groupId>com.zfoo</groupId>
|
||||
<artifactId>protocol</artifactId>
|
||||
<version>${zfoo.protocol.version}</version>
|
||||
<version>${zfoo.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
Reference in New Issue
Block a user