mirror of
https://github.com/tiennm99/zfoo.git
synced 2026-05-14 12:59:17 +00:00
334 lines
13 KiB
XML
334 lines
13 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>
|
||
<packaging>jar</packaging>
|
||
<version>4.1.0</version>
|
||
|
||
<properties>
|
||
<zfoo.version>4.1.0</zfoo.version>
|
||
<!-- spring and spring boot -->
|
||
<spring.version>6.2.5</spring.version>
|
||
<spring.boot.version>3.4.4</spring.boot.version>
|
||
<junit.version>4.13.2</junit.version>
|
||
<!-- bytecode enhancement -->
|
||
<javassist.version>3.30.2-GA</javassist.version>
|
||
<bytebuddy.version>1.17.4</bytebuddy.version>
|
||
<!-- network framework -->
|
||
<netty.version>4.1.119.Final</netty.version>
|
||
<!-- zookeeper -->
|
||
<curator.version>5.8.0</curator.version>
|
||
<!-- hardware detection -->
|
||
<oshi.version>6.8.0</oshi.version>
|
||
<!-- Office document parsing -->
|
||
<poi.version>5.4.0</poi.version>
|
||
<csv.version>1.14.0</csv.version>
|
||
<!-- maven core plugin -->
|
||
<native-maven-plugin.version>0.10.1</native-maven-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.14.0</maven-compiler-plugin.version>
|
||
<maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version>
|
||
<maven-jar-plugin.version>3.4.2</maven-jar-plugin.version>
|
||
<maven-shade-plugin.version>3.6.0</maven-shade-plugin.version>
|
||
<maven-install-plugin.version>3.1.4</maven-install-plugin.version>
|
||
<!-- deploy maven repository -->
|
||
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
|
||
<maven-deploy-plugin.version>3.1.1</maven-deploy-plugin.version>
|
||
<maven-source-plugin.version>3.3.0</maven-source-plugin.version>
|
||
<maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version>
|
||
<maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version>
|
||
<versions-maven-plugin.version>2.16.0</versions-maven-plugin.version>
|
||
<!-- encoding and java version -->
|
||
<project.build.sourceEncoding>${file.encoding}</project.build.sourceEncoding>
|
||
<maven.compiler.encoding>${file.encoding}</maven.compiler.encoding>
|
||
<java.version>17</java.version>
|
||
<file.encoding>UTF-8</file.encoding>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-json</artifactId>
|
||
<version>${spring.boot.version}</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>spring-boot-starter</artifactId>
|
||
<groupId>org.springframework.boot</groupId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<artifactId>spring-web</artifactId>
|
||
<groupId>org.springframework</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<!-- 需要保持和spring-boot-starter-json里的jackson同样的版本-->
|
||
<!-- 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.18.3</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||
<artifactId>jackson-dataformat-xml</artifactId>
|
||
<version>2.18.3</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>
|
||
<version>${netty.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.javassist</groupId>
|
||
<artifactId>javassist</artifactId>
|
||
<version>${javassist.version}</version>
|
||
</dependency>
|
||
|
||
<!-- https://mvnrepository.com/artifact/org.openjdk.jmh/jmh-core -->
|
||
<dependency>
|
||
<groupId>org.openjdk.jmh</groupId>
|
||
<artifactId>jmh-core</artifactId>
|
||
<version>1.37</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.openjdk.jmh</groupId>
|
||
<artifactId>jmh-generator-annprocess</artifactId>
|
||
<version>1.37</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.google.protobuf</groupId>
|
||
<artifactId>protobuf-java</artifactId>
|
||
<version>3.21.7</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.esotericsoftware</groupId>
|
||
<artifactId>kryo</artifactId>
|
||
<version>5.6.2</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.apache.fury</groupId>
|
||
<artifactId>fury-core</artifactId>
|
||
<version>0.10.0</version>
|
||
<scope>test</scope>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>slf4j-api</artifactId>
|
||
<groupId>org.slf4j</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.alibaba.fastjson2</groupId>
|
||
<artifactId>fastjson2</artifactId>
|
||
<version>2.0.56</version>
|
||
<scope>test</scope>
|
||
</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>
|
||
|
||
<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>
|
||
<threadCount>8</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>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-deploy-plugin</artifactId>
|
||
<version>${maven-deploy-plugin.version}</version>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
|
||
|
||
<!-- deploy to maven repository should specify these tag.(部署到maven中央仓库必须指定下面的标签) -->
|
||
<name>protocol</name>
|
||
<description>zfoo protocol is binary serialization framework for Java/C++/js/ts/C#/Go/Lua/GDScript/Python</description>
|
||
<url>https://github.com/zfoo-project/zfoo</url>
|
||
|
||
<developers>
|
||
<developer>
|
||
<name>all contributors</name>
|
||
<email>all@zfoo.com</email>
|
||
<url>https://github.com/zfoo-project/zfoo</url>
|
||
</developer>
|
||
</developers>
|
||
|
||
<organization>
|
||
<name>zfoo</name>
|
||
<url>https://github.com/zfoo-project/zfoo</url>
|
||
</organization>
|
||
|
||
<licenses>
|
||
<license>
|
||
<name>Apache License 2.0</name>
|
||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||
</license>
|
||
</licenses>
|
||
|
||
<scm>
|
||
<connection>https://github.com/zfoo-project/zfoo.git</connection>
|
||
<developerConnection>scm:git:ssh://git@github.com:zfoo-project/zfoo.git</developerConnection>
|
||
<url>https://github.com/zfoo-project/zfoo</url>
|
||
</scm>
|
||
|
||
<profiles>
|
||
<profile>
|
||
<id>ossrh</id>
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.sonatype.plugins</groupId>
|
||
<artifactId>nexus-staging-maven-plugin</artifactId>
|
||
<version>${nexus-staging-maven-plugin.version}</version>
|
||
<extensions>true</extensions>
|
||
<configuration>
|
||
<serverId>ossrh</serverId>
|
||
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
|
||
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-source-plugin</artifactId>
|
||
<version>${maven-source-plugin.version}</version>
|
||
<executions>
|
||
<execution>
|
||
<id>attach-sources</id>
|
||
<goals>
|
||
<goal>jar-no-fork</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-javadoc-plugin</artifactId>
|
||
<version>${maven-javadoc-plugin.version}</version>
|
||
<executions>
|
||
<execution>
|
||
<id>attach-javadocs</id>
|
||
<goals>
|
||
<goal>jar</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-gpg-plugin</artifactId>
|
||
<version>${maven-gpg-plugin.version}</version>
|
||
<executions>
|
||
<execution>
|
||
<id>sign-artifacts</id>
|
||
<phase>verify</phase>
|
||
<goals>
|
||
<goal>sign</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
|
||
</plugins>
|
||
</build>
|
||
|
||
<distributionManagement>
|
||
<repository>
|
||
<id>ossrh</id>
|
||
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||
</repository>
|
||
</distributionManagement>
|
||
</profile>
|
||
</profiles>
|
||
</project>
|