帆软使用的第三方框架。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

309 lines
12 KiB

<?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>
<parent>
<groupId>com.fr.third</groupId>
<artifactId>step1</artifactId>
<version>${revision}</version>
<relativePath>../base-third-project/base-third-step1</relativePath>
</parent>
<artifactId>fine-netty</artifactId>
<version>${revision}</version>
<dependencies>
<!-- <dependency>
<groupId>io.netty</groupId>
<artifactId>netty-jni-util</artifactId>
<version>0.0.6.Final</version>
<classifier>sources</classifier>
<optional>true</optional>
</dependency>-->
<!-- <dependency>
<groupId>io.netty</groupId>
<artifactId>netty-dev-tools</artifactId>
<version>4.1.78.Final</version>
</dependency>-->
<!-- Needed for java11 and later as javax.activation is not part of the JDK anymore -->
<dependency>
<groupId>com.sun.activation</groupId>
<artifactId>javax.activation</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/javax.activation-1.2.0.jar</systemPath>
</dependency>
<!-- JBoss Marshalling - completely optional -->
<dependency>
<groupId>org.jboss.marshalling</groupId>
<artifactId>jboss-marshalling</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/jboss-marshalling-1.4.11.Final.jar</systemPath>
</dependency>
<!-- SPDY and HTTP/2 - completely optional -->
<dependency>
<groupId>org.eclipse.jetty.npn</groupId>
<artifactId>npn-api</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/npn-api-1.1.1.v20141010.jar</systemPath>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.alpn</groupId>
<artifactId>alpn-api</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/alpn-api-1.1.2.v20150522.jar</systemPath>
</dependency>
<!-- Google Protocol Buffers - completely optional -->
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/protobuf-java-2.6.1.jar</systemPath>
</dependency>
<dependency>
<groupId>com.google.protobuf.nano</groupId>
<artifactId>protobuf-javanano</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/protobuf-javanano-3.0.0-alpha-5.jar</systemPath>
</dependency>
<!-- Our own Tomcat Native fork - completely optional for the native lib, used for accelerating SSL with OpenSSL. -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-classes</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/netty-tcnative-classes-2.0.53.Final.jar</systemPath>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/netty-tcnative-boringssl-static-2.0.53.Final.jar</systemPath>
</dependency>
<!-- Conscrypt - needed for running tests, used for accelerating SSL with OpenSSL. -->
<dependency>
<groupId>org.conscrypt</groupId>
<artifactId>conscrypt-openjdk-uber</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/conscrypt-openjdk-uber-2.5.2.jar</systemPath>
</dependency>
<!--
Bouncy Castle - completely optional, only needed when:
- you generate a temporary self-signed certificate using SelfSignedCertificate, and
- you don't use the JDK which doesn't provide sun.security.x509 package.
-->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/bcpkix-jdk15on-1.69.jar</systemPath>
</dependency>
<!--
Completely optional and only needed for OCSP stapling to construct and
parse OCSP requests and responses.
-->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/bcprov-jdk15on-1.69.jar</systemPath>
</dependency>
<dependency>
<groupId>com.fasterxml</groupId>
<artifactId>aalto-xml</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/aalto-xml-1.0.0.jar</systemPath>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jzlib</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/jzlib-1.1.3.jar</systemPath>
</dependency>
<dependency>
<groupId>com.ning</groupId>
<artifactId>compress-lzf</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/compress-lzf-1.0.3.jar</systemPath>
</dependency>
<dependency>
<groupId>net.jpountz.lz4</groupId>
<artifactId>lz4</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/lz4-1.3.0.jar</systemPath>
</dependency>
<dependency>
<groupId>com.github.jponge</groupId>
<artifactId>lzma-java</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/lzma-java-1.3.jar</systemPath>
</dependency>
<dependency>
<groupId>com.github.luben</groupId>
<artifactId>zstd-jni</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/zstd-jni-1.5.0-2.jar</systemPath>
</dependency>
<dependency>
<groupId>com.aayushatharva.brotli4j</groupId>
<artifactId>brotli4j</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/brotli4j-1.7.1.jar</systemPath>
</dependency>
<dependency>
<groupId>com.aayushatharva.brotli4j</groupId>
<artifactId>native-linux-x86_64</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/native-linux-x86_64-1.7.1.jar</systemPath>
</dependency>
<dependency>
<groupId>com.aayushatharva.brotli4j</groupId>
<artifactId>native-osx-x86_64</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/native-osx-x86_64-1.7.1.jar</systemPath>
</dependency>
<dependency>
<groupId>com.aayushatharva.brotli4j</groupId>
<artifactId>native-windows-x86_64</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/native-windows-x86_64-1.7.1.jar</systemPath>
</dependency>
<!-- Java concurrency tools for the JVM -->
<dependency>
<groupId>org.jctools</groupId>
<artifactId>jctools-core</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/jctools-core-3.1.0.jar</systemPath>
</dependency>
<!-- Annotations for IDE integration and analysis -->
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations-java5</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/annotations-java5-23.0.0.jar</systemPath>
</dependency>
<dependency>
<groupId>org.rxtx</groupId>
<artifactId>rxtx</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/rxtx-2.1.7.jar</systemPath>
</dependency>
<dependency>
<groupId>com.barchart.udt</groupId>
<artifactId>barchart-udt-bundle</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/barchart-udt-bundle-2.3.0.jar</systemPath>
</dependency>
<!-- <dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/ant-1.8.2.jar</systemPath>
</dependency>-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/slf4j-api-1.7.30.jar</systemPath>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/commons-logging-1.2.jar</systemPath>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/log4j-api-2.17.2.jar</systemPath>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/log4j-1.2-api-2.17.2.jar</systemPath>
</dependency>
<!-- Metrics providers -->
<dependency>
<groupId>com.yammer.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/metrics-core-2.2.0.jar</systemPath>
</dependency>
<!-- BlockHound integration -->
<dependency>
<groupId>io.projectreactor.tools</groupId>
<artifactId>blockhound</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/blockhound-1.0.6.RELEASE.jar</systemPath>
</dependency>
<dependency>
<groupId>org.graalvm.nativeimage</groupId>
<artifactId>svm</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/svm-19.3.6.jar</systemPath>
</dependency>
<dependency>
<groupId>org.codehaus.woodstox</groupId>
<artifactId>stax2-api</artifactId>
<version>local</version>
<scope>system</scope>
<systemPath>${basedir}/lib/stax2-api-4.0.0.jar</systemPath>
</dependency>
</dependencies>
</project>