mirror of
https://github.com/tiennm99/zfoo.git
synced 2026-05-18 17:27:10 +00:00
111 lines
4.0 KiB
XML
111 lines
4.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<groupId>com.zfoo</groupId>
|
|
<artifactId>zfoo</artifactId>
|
|
<version>3.0</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<description>The root project of zfoo</description>
|
|
<url>https://github.com/zfoo-project/zfoo</url>
|
|
<inceptionYear>2016</inceptionYear>
|
|
|
|
<organization>
|
|
<name>The zfoo Authors</name>
|
|
<url>https://github.com/zfoo-project/zfoo</url>
|
|
</organization>
|
|
|
|
|
|
<modules>
|
|
<module>boot</module>
|
|
<module>event</module>
|
|
<module>hotswap</module>
|
|
<module>monitor</module>
|
|
<module>net</module>
|
|
<module>scheduler</module>
|
|
<module>storage</module>
|
|
<module>orm</module>
|
|
<module>protocol</module>
|
|
<module>util</module>
|
|
</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>
|
|
|
|
<!-- spring and spring boot -->
|
|
<spring.version>5.3.19</spring.version>
|
|
<spring.boot.version>2.6.7</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>
|
|
<kryo.version>5.3.0</kryo.version>
|
|
|
|
<!-- zookeeper -->
|
|
<curator.version>5.3.0</curator.version>
|
|
|
|
<!-- hardware detection(硬件检测) -->
|
|
<oshi.version>6.0.0</oshi.version>
|
|
|
|
<!-- database and cache -->
|
|
<mongodb-driver-sync.version>4.7.2</mongodb-driver-sync.version>
|
|
<caffeine.version>2.8.8</caffeine.version>
|
|
|
|
<!-- Office document parsing(office文档解析包) -->
|
|
<poi.version>5.2.3</poi.version>
|
|
<csv.version>1.9.0</csv.version>
|
|
|
|
<!-- Toolkit(工具包) -->
|
|
<jctools.version>4.0.1</jctools.version>
|
|
|
|
<!-- elastic search -->
|
|
<elastic.search.version>8.4.3</elastic.search.version>
|
|
|
|
<java.version>11</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-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>
|
|
|
|
<project.build.sourceEncoding>${file.encoding}</project.build.sourceEncoding>
|
|
<maven.compiler.encoding>${file.encoding}</maven.compiler.encoding>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
<version>${maven-clean-plugin.version}</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|