mirror of
https://github.com/tiennm99/zfoo.git
synced 2026-05-16 14:59:59 +00:00
302 lines
11 KiB
XML
302 lines
11 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
xmlns="http://maven.apache.org/POM/4.0.0"
|
||
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>protocol</artifactId>
|
||
<version>3.0</version>
|
||
|
||
<packaging>jar</packaging>
|
||
|
||
|
||
<properties>
|
||
<!-- 本项目的其它module版本号 -->
|
||
<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框架 -->
|
||
<spring.version>5.3.4</spring.version>
|
||
<spring.boot.version>2.4.3</spring.boot.version>
|
||
|
||
|
||
<!-- 工具包 -->
|
||
<commons-codec.version>1.15</commons-codec.version>
|
||
<commons-io.version>2.8.0</commons-io.version>
|
||
<commons-collections.version>4.4</commons-collections.version>
|
||
<commons-lang.version>3.12.0</commons-lang.version>
|
||
<commons-fileupload.version>1.4</commons-fileupload.version>
|
||
<commons-logging.version>1.2</commons-logging.version>
|
||
<commons-log4j.version>2.14.0</commons-log4j.version>
|
||
<httpcomponents.version>4.5.13</httpcomponents.version>
|
||
<httpcore.version>4.4.14</httpcore.version>
|
||
<google.guava.version>30.1-jre</google.guava.version>
|
||
<google.protobuf.version>3.9.1</google.protobuf.version>
|
||
<google.gson.version>2.8.6</google.gson.version>
|
||
<jprotobuf.version>2.4.13</jprotobuf.version>
|
||
<kryo.version>5.0.3</kryo.version>
|
||
<caffeine.version>2.8.8</caffeine.version>
|
||
<jctools.version>3.2.0</jctools.version>
|
||
<hutool.version>5.5.9</hutool.version>
|
||
<oshi.version>5.7.0</oshi.version>
|
||
<snakeyaml.version>1.28</snakeyaml.version>
|
||
|
||
|
||
<!-- json和xml解析包 -->
|
||
<jackson.version>2.12.1</jackson.version>
|
||
<fastjson.version>1.2.51</fastjson.version>
|
||
<!-- office文档解析包 -->
|
||
<poi.version>4.1.2</poi.version>
|
||
<csv.version>1.9.0</csv.version>
|
||
<!-- 字节码增强 -->
|
||
<javassist.version>3.27.0-GA</javassist.version>
|
||
<bytebuddy.version>1.10.22</bytebuddy.version>
|
||
|
||
<!-- 网络通讯框架 -->
|
||
<netty.version>4.1.63.Final</netty.version>
|
||
|
||
<!-- 分布式zookeeper核心依赖包 -->
|
||
<zookeeper.version>3.6.1</zookeeper.version>
|
||
<curator.version>5.1.0</curator.version>
|
||
|
||
<!-- 数据库和缓存 -->
|
||
<mongodb-driver-sync.version>4.2.1</mongodb-driver-sync.version>
|
||
<jedis.version>3.3.0</jedis.version>
|
||
|
||
<!-- 消息队列中间件 -->
|
||
<rocketmq.version>4.5.2</rocketmq.version>
|
||
|
||
<!-- elastic search 中间件 -->
|
||
<elastic.search.version>7.9.3</elastic.search.version>
|
||
<elastic.search.spring.version>4.1.5</elastic.search.spring.version>
|
||
<lucene.version>8.6.2</lucene.version>
|
||
|
||
|
||
<slf4j.version>1.7.30</slf4j.version>
|
||
<logback.version>1.2.3</logback.version>
|
||
|
||
<junit.version>4.12</junit.version>
|
||
|
||
<!-- java版本和文件编码 -->
|
||
<java.version>11</java.version>
|
||
<file.encoding>UTF-8</file.encoding>
|
||
<jakarta.version>1.3.5</jakarta.version>
|
||
|
||
<!-- maven核心插件 -->
|
||
<maven-clean-plugin.version>3.1.0</maven-clean-plugin.version>
|
||
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
|
||
<maven-resources-plugin.version>3.2.0</maven-resources-plugin.version>
|
||
<maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>
|
||
<maven-jar-plugin.version>3.2.0</maven-jar-plugin.version>
|
||
<maven-shade-plugin.version>3.2.4</maven-shade-plugin.version>
|
||
<versions-maven-plugin.version>2.8.1</versions-maven-plugin.version>
|
||
|
||
|
||
<project.build.sourceEncoding>${file.encoding}</project.build.sourceEncoding>
|
||
<maven.compiler.encoding>${file.encoding}</maven.compiler.encoding>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<!-- 依赖的通信类库,只使用到了ByteBuf,为了方便全部引入 -->
|
||
<dependency>
|
||
<groupId>io.netty</groupId>
|
||
<artifactId>netty-all</artifactId>
|
||
<version>${netty.version}</version>
|
||
</dependency>
|
||
|
||
<!-- 动态生成字节码的javassist类库,用于协议解析的字节码增强 -->
|
||
<dependency>
|
||
<groupId>org.javassist</groupId>
|
||
<artifactId>javassist</artifactId>
|
||
<version>${javassist.version}</version>
|
||
</dependency>
|
||
|
||
<!-- Json库,使用Jackson -->
|
||
<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解析XML库 -->
|
||
<dependency>
|
||
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||
<artifactId>jackson-dataformat-xml</artifactId>
|
||
<version>${jackson.version}</version>
|
||
</dependency>
|
||
|
||
<!-- Jackson涡轮增压,字节码增加解析json,bytecode generation to replace use of Reflection for field access and method calls -->
|
||
<dependency>
|
||
<groupId>com.fasterxml.jackson.module</groupId>
|
||
<artifactId>jackson-module-afterburner</artifactId>
|
||
<version>${jackson.version}</version>
|
||
</dependency>
|
||
|
||
<!-- Protobuf -->
|
||
<dependency>
|
||
<groupId>com.baidu</groupId>
|
||
<artifactId>jprotobuf</artifactId>
|
||
<version>${jprotobuf.version}</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>slf4j-api</artifactId>
|
||
<groupId>org.slf4j</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.google.guava</groupId>
|
||
<artifactId>guava</artifactId>
|
||
<version>${google.guava.version}</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>error_prone_annotations</artifactId>
|
||
<groupId>com.google.errorprone</groupId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<artifactId>checker-qual</artifactId>
|
||
<groupId>org.checkerframework</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
|
||
|
||
<!-- Kryo -->
|
||
<dependency>
|
||
<groupId>com.esotericsoftware</groupId>
|
||
<artifactId>kryo</artifactId>
|
||
<version>${kryo.version}</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
|
||
<!-- slf4j-api -->
|
||
<dependency>
|
||
<groupId>org.slf4j</groupId>
|
||
<artifactId>slf4j-api</artifactId>
|
||
<version>${slf4j.version}</version>
|
||
</dependency>
|
||
<!-- logback核心包 -->
|
||
<dependency>
|
||
<groupId>ch.qos.logback</groupId>
|
||
<artifactId>logback-core</artifactId>
|
||
<version>${logback.version}</version>
|
||
</dependency>
|
||
<!-- logback的sl4j的实现 -->
|
||
<dependency>
|
||
<groupId>ch.qos.logback</groupId>
|
||
<artifactId>logback-classic</artifactId>
|
||
<version>${logback.version}</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>slf4j-api</artifactId>
|
||
<groupId>org.slf4j</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<!-- 依赖的测试库 -->
|
||
<dependency>
|
||
<groupId>junit</groupId>
|
||
<artifactId>junit</artifactId>
|
||
<version>${junit.version}</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<build>
|
||
<sourceDirectory>src/main/java</sourceDirectory>
|
||
<testSourceDirectory>src/test/java</testSourceDirectory>
|
||
|
||
<plugins>
|
||
|
||
<!-- 清理插件 -->
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-clean-plugin</artifactId>
|
||
<version>${maven-clean-plugin.version}</version>
|
||
</plugin>
|
||
|
||
<!-- 编译插件 -->
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<version>${maven-compiler-plugin.version}</version>
|
||
<configuration>
|
||
<source>${java.version}</source>
|
||
<target>${java.version}</target>
|
||
<encoding>${file.encoding}</encoding>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
<!-- resource资源管理插件 -->
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-resources-plugin</artifactId>
|
||
<version>${maven-resources-plugin.version}</version>
|
||
<executions>
|
||
<execution>
|
||
<id>copy-resources</id>
|
||
<phase>package</phase>
|
||
<goals>
|
||
<goal>copy-resources</goal>
|
||
</goals>
|
||
<configuration>
|
||
<encoding>${file.encoding}</encoding>
|
||
<outputDirectory>${project.build.directory}/resource</outputDirectory>
|
||
<resources>
|
||
<resource>
|
||
<directory>src/main/resources/</directory>
|
||
<filtering>false</filtering>
|
||
</resource>
|
||
</resources>
|
||
</configuration>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
|
||
|
||
<!-- 测试插件 -->
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-surefire-plugin</artifactId>
|
||
<version>${maven-surefire-plugin.version}</version>
|
||
<configuration>
|
||
<forkMode>once</forkMode>
|
||
<threadCount>10</threadCount>
|
||
<argLine>-Dfile.encoding=${file.encoding}</argLine>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-jar-plugin</artifactId>
|
||
<version>${maven-jar-plugin.version}</version>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
|
||
|
||
</project>
|