| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771 |
- <?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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>io.seata</groupId>
- <artifactId>seata-all</artifactId>
- <name>Seata All-in-one 1.6.1</name>
- <version>1.6.1</version>
- <description>Seata is an easy-to-use, high-performance, java based, open source distributed transaction solution.</description>
- <url>https://seata.io</url>
- <issueManagement>
- <system>github</system>
- <url>https://github.com/seata/seata/issues</url>
- </issueManagement>
- <developers>
- <developer>
- <id>Seata</id>
- <name>Seata</name>
- <email>dev-seata@googlegroups.com</email>
- <url>https://seata.io</url>
- </developer>
- </developers>
- <licenses>
- <license>
- <name>Apache License, Version 2.0</name>
- <url>https://www.apache.org/licenses/LICENSE-2.0</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <scm>
- <connection>scm:git@github.com:seata/seata.git</connection>
- <developerConnection>scm:git@github.com:seata/seata.git</developerConnection>
- <url>git@github.com:seata/seata.git</url>
- </scm>
- <organization>
- <name>Seata</name>
- <url>https://github.com/seata</url>
- </organization>
- <dependencies>
- <dependency>
- <groupId>io.seata</groupId>
- <artifactId>seata-sqlparser-antlr</artifactId>
- <version>1.6.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>io.seata</groupId>
- <artifactId>seata-serializer-protobuf</artifactId>
- <version>1.6.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- <version>5.3.19</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-core</artifactId>
- <version>5.3.19</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-beans</artifactId>
- <version>5.3.19</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-aop</artifactId>
- <version>5.3.19</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-webmvc</artifactId>
- <version>5.3.19</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-all</artifactId>
- <version>4.1.76.Final</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.antlr</groupId>
- <artifactId>antlr4</artifactId>
- <version>4.8</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.83</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid</artifactId>
- <version>1.2.6</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.typesafe</groupId>
- <artifactId>config</artifactId>
- <version>1.2.1</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>1.7.36</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- <version>1.2.9</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>logback-core</artifactId>
- <groupId>ch.qos.logback</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>2.6</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-pool2</artifactId>
- <version>2.9.0</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>commons-pool</groupId>
- <artifactId>commons-pool</artifactId>
- <version>1.6</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.dubbo.extensions</groupId>
- <artifactId>dubbo-filter-seata</artifactId>
- <version>1.0.0</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.google.protobuf</groupId>
- <artifactId>protobuf-java</artifactId>
- <version>3.11.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>dubbo</artifactId>
- <version>2.6.5</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>netty</artifactId>
- <groupId>org.jboss.netty</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.alibaba.edas</groupId>
- <artifactId>edas-sdk</artifactId>
- <version>1.8.3</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>junit</artifactId>
- <groupId>junit</groupId>
- </exclusion>
- <exclusion>
- <artifactId>LightApi</artifactId>
- <groupId>com.alibaba.hsf</groupId>
- </exclusion>
- <exclusion>
- <artifactId>commons-io</artifactId>
- <groupId>commons-io</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>net.bytebuddy</groupId>
- <artifactId>byte-buddy</artifactId>
- <version>1.12.13</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>aopalliance</groupId>
- <artifactId>aopalliance</artifactId>
- <version>1.0</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.101tec</groupId>
- <artifactId>zkclient</artifactId>
- <version>0.11</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>slf4j-log4j12</artifactId>
- <groupId>org.slf4j</groupId>
- </exclusion>
- <exclusion>
- <artifactId>netty</artifactId>
- <groupId>io.netty</groupId>
- </exclusion>
- <exclusion>
- <artifactId>org.apache.zookeeper</artifactId>
- <groupId>zookeeper</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.zookeeper</groupId>
- <artifactId>zookeeper</artifactId>
- <version>3.5.9</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>netty</artifactId>
- <groupId>io.netty</groupId>
- </exclusion>
- <exclusion>
- <artifactId>zookeeper-jute</artifactId>
- <groupId>org.apache.zookeeper</groupId>
- </exclusion>
- <exclusion>
- <artifactId>audience-annotations</artifactId>
- <groupId>org.apache.yetus</groupId>
- </exclusion>
- <exclusion>
- <artifactId>slf4j-log4j12</artifactId>
- <groupId>org.slf4j</groupId>
- </exclusion>
- <exclusion>
- <artifactId>log4j</artifactId>
- <groupId>log4j</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.alipay.sofa</groupId>
- <artifactId>registry-client-all</artifactId>
- <version>5.2.0</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>lookout-api</artifactId>
- <groupId>com.alipay.sofa.lookout</groupId>
- </exclusion>
- <exclusion>
- <artifactId>bolt</artifactId>
- <groupId>com.alipay.sofa</groupId>
- </exclusion>
- <exclusion>
- <artifactId>hessian</artifactId>
- <groupId>com.alipay.sofa</groupId>
- </exclusion>
- <exclusion>
- <artifactId>sofa-common-tools</artifactId>
- <groupId>com.alipay.sofa.common</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.alibaba.spring</groupId>
- <artifactId>spring-context-support</artifactId>
- <version>1.0.2</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.alibaba.nacos</groupId>
- <artifactId>nacos-client</artifactId>
- <version>1.4.2</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>nacos-common</artifactId>
- <groupId>com.alibaba.nacos</groupId>
- </exclusion>
- <exclusion>
- <artifactId>nacos-api</artifactId>
- <groupId>com.alibaba.nacos</groupId>
- </exclusion>
- <exclusion>
- <artifactId>commons-codec</artifactId>
- <groupId>commons-codec</groupId>
- </exclusion>
- <exclusion>
- <artifactId>jackson-core</artifactId>
- <groupId>com.fasterxml.jackson.core</groupId>
- </exclusion>
- <exclusion>
- <artifactId>simpleclient</artifactId>
- <groupId>io.prometheus</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.ctrip.framework.apollo</groupId>
- <artifactId>apollo-client</artifactId>
- <version>2.0.1</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>apollo-core</artifactId>
- <groupId>com.ctrip.framework.apollo</groupId>
- </exclusion>
- <exclusion>
- <artifactId>guice</artifactId>
- <groupId>com.google.inject</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>redis.clients</groupId>
- <artifactId>jedis</artifactId>
- <version>3.2.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.netflix.eureka</groupId>
- <artifactId>eureka-client</artifactId>
- <version>1.10.17</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>servlet-api</artifactId>
- <groupId>javax.servlet</groupId>
- </exclusion>
- <exclusion>
- <artifactId>netflix-eventbus</artifactId>
- <groupId>com.netflix.netflix-commons</groupId>
- </exclusion>
- <exclusion>
- <artifactId>jsr311-api</artifactId>
- <groupId>javax.ws.rs</groupId>
- </exclusion>
- <exclusion>
- <artifactId>servo-core</artifactId>
- <groupId>com.netflix.servo</groupId>
- </exclusion>
- <exclusion>
- <artifactId>jersey-core</artifactId>
- <groupId>com.sun.jersey</groupId>
- </exclusion>
- <exclusion>
- <artifactId>jersey-client</artifactId>
- <groupId>com.sun.jersey</groupId>
- </exclusion>
- <exclusion>
- <artifactId>jersey-apache-client4</artifactId>
- <groupId>com.sun.jersey.contribs</groupId>
- </exclusion>
- <exclusion>
- <artifactId>commons-configuration</artifactId>
- <groupId>commons-configuration</groupId>
- </exclusion>
- <exclusion>
- <artifactId>compactmap</artifactId>
- <groupId>com.github.vlsi.compactmap</groupId>
- </exclusion>
- <exclusion>
- <artifactId>jackson-annotations</artifactId>
- <groupId>com.fasterxml.jackson.core</groupId>
- </exclusion>
- <exclusion>
- <artifactId>jettison</artifactId>
- <groupId>org.codehaus.jettison</groupId>
- </exclusion>
- <exclusion>
- <artifactId>guice</artifactId>
- <groupId>com.google.inject</groupId>
- </exclusion>
- <exclusion>
- <artifactId>jackson-core</artifactId>
- <groupId>com.fasterxml.jackson.core</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.netflix.archaius</groupId>
- <artifactId>archaius-core</artifactId>
- <version>0.7.6</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>commons-configuration</artifactId>
- <groupId>commons-configuration</groupId>
- </exclusion>
- <exclusion>
- <artifactId>jackson-annotations</artifactId>
- <groupId>com.fasterxml.jackson.core</groupId>
- </exclusion>
- <exclusion>
- <artifactId>jackson-core</artifactId>
- <groupId>com.fasterxml.jackson.core</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.ecwid.consul</groupId>
- <artifactId>consul-api</artifactId>
- <version>1.4.2</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>io.etcd</groupId>
- <artifactId>jetcd-core</artifactId>
- <version>0.5.0</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>netty-codec-http</artifactId>
- <groupId>io.netty</groupId>
- </exclusion>
- <exclusion>
- <artifactId>netty-codec-http2</artifactId>
- <groupId>io.netty</groupId>
- </exclusion>
- <exclusion>
- <artifactId>netty-handler-proxy</artifactId>
- <groupId>io.netty</groupId>
- </exclusion>
- <exclusion>
- <artifactId>netty-handler</artifactId>
- <groupId>io.netty</groupId>
- </exclusion>
- <exclusion>
- <artifactId>guava</artifactId>
- <groupId>com.google.guava</groupId>
- </exclusion>
- <exclusion>
- <artifactId>jetcd-common</artifactId>
- <groupId>io.etcd</groupId>
- </exclusion>
- <exclusion>
- <artifactId>jetcd-resolver</artifactId>
- <groupId>io.etcd</groupId>
- </exclusion>
- <exclusion>
- <artifactId>grpc-core</artifactId>
- <groupId>io.grpc</groupId>
- </exclusion>
- <exclusion>
- <artifactId>grpc-grpclb</artifactId>
- <groupId>io.grpc</groupId>
- </exclusion>
- <exclusion>
- <artifactId>failsafe</artifactId>
- <groupId>net.jodah</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <version>27.0.1-jre</version>
- <scope>compile</scope>
- <exclusions>
- <exclusion>
- <artifactId>listenablefuture</artifactId>
- <groupId>com.google.guava</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>javax.inject</groupId>
- <artifactId>javax.inject</artifactId>
- <version>1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.5.13</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>commons-logging</artifactId>
- <groupId>commons-logging</groupId>
- </exclusion>
- <exclusion>
- <artifactId>commons-codec</artifactId>
- <groupId>commons-codec</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpcore</artifactId>
- <version>4.4.15</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.github.ben-manes.caffeine</groupId>
- <artifactId>caffeine</artifactId>
- <version>2.9.3</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.alipay.sofa</groupId>
- <artifactId>sofa-rpc-all</artifactId>
- <version>5.5.3</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>tracer-core</artifactId>
- <groupId>com.alipay.sofa</groupId>
- </exclusion>
- <exclusion>
- <artifactId>resteasy-netty4</artifactId>
- <groupId>org.jboss.resteasy</groupId>
- </exclusion>
- <exclusion>
- <artifactId>resteasy-client</artifactId>
- <groupId>org.jboss.resteasy</groupId>
- </exclusion>
- <exclusion>
- <artifactId>resteasy-jackson-provider</artifactId>
- <groupId>org.jboss.resteasy</groupId>
- </exclusion>
- <exclusion>
- <artifactId>lookout-api</artifactId>
- <groupId>com.alipay.sofa.lookout</groupId>
- </exclusion>
- <exclusion>
- <artifactId>bolt</artifactId>
- <groupId>com.alipay.sofa</groupId>
- </exclusion>
- <exclusion>
- <artifactId>sofa-common-tools</artifactId>
- <groupId>com.alipay.sofa.common</groupId>
- </exclusion>
- <exclusion>
- <artifactId>hessian</artifactId>
- <groupId>com.alipay.sofa</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.weibo</groupId>
- <artifactId>motan-core</artifactId>
- <version>1.0.0</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>slf4j-log4j12</artifactId>
- <groupId>org.slf4j</groupId>
- </exclusion>
- <exclusion>
- <artifactId>metrics-core</artifactId>
- <groupId>com.codahale.metrics</groupId>
- </exclusion>
- <exclusion>
- <artifactId>javapoet</artifactId>
- <groupId>com.squareup</groupId>
- </exclusion>
- <exclusion>
- <artifactId>commons-lang3</artifactId>
- <groupId>org.apache.commons</groupId>
- </exclusion>
- <exclusion>
- <artifactId>log4j</artifactId>
- <groupId>log4j</groupId>
- </exclusion>
- <exclusion>
- <artifactId>commons-codec</artifactId>
- <groupId>commons-codec</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.weibo</groupId>
- <artifactId>motan-transport-netty</artifactId>
- <version>1.0.0</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>slf4j-log4j12</artifactId>
- <groupId>org.slf4j</groupId>
- </exclusion>
- <exclusion>
- <artifactId>netty</artifactId>
- <groupId>org.jboss.netty</groupId>
- </exclusion>
- <exclusion>
- <artifactId>commons-lang3</artifactId>
- <groupId>org.apache.commons</groupId>
- </exclusion>
- <exclusion>
- <artifactId>log4j</artifactId>
- <groupId>log4j</groupId>
- </exclusion>
- <exclusion>
- <artifactId>commons-codec</artifactId>
- <groupId>commons-codec</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>io.protostuff</groupId>
- <artifactId>protostuff-core</artifactId>
- <version>1.5.9</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>protostuff-api</artifactId>
- <groupId>io.protostuff</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>io.protostuff</groupId>
- <artifactId>protostuff-runtime</artifactId>
- <version>1.5.9</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>protostuff-collectionschema</artifactId>
- <groupId>io.protostuff</groupId>
- </exclusion>
- <exclusion>
- <artifactId>protostuff-api</artifactId>
- <groupId>io.protostuff</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>io.grpc</groupId>
- <artifactId>grpc-netty</artifactId>
- <version>1.27.1</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>*</artifactId>
- <groupId>io.netty</groupId>
- </exclusion>
- <exclusion>
- <artifactId>grpc-core</artifactId>
- <groupId>io.grpc</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>io.grpc</groupId>
- <artifactId>grpc-protobuf</artifactId>
- <version>1.27.1</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>grpc-api</artifactId>
- <groupId>io.grpc</groupId>
- </exclusion>
- <exclusion>
- <artifactId>proto-google-common-protos</artifactId>
- <groupId>com.google.api.grpc</groupId>
- </exclusion>
- <exclusion>
- <artifactId>grpc-protobuf-lite</artifactId>
- <groupId>io.grpc</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>io.grpc</groupId>
- <artifactId>grpc-stub</artifactId>
- <version>1.27.1</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>grpc-api</artifactId>
- <groupId>io.grpc</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>5.1.35</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- <version>42.1.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>2.12.6.1</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>jackson-annotations</artifactId>
- <groupId>com.fasterxml.jackson.core</groupId>
- </exclusion>
- <exclusion>
- <artifactId>jackson-core</artifactId>
- <groupId>com.fasterxml.jackson.core</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.esotericsoftware</groupId>
- <artifactId>kryo</artifactId>
- <version>5.3.0</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>reflectasm</artifactId>
- <groupId>com.esotericsoftware</groupId>
- </exclusion>
- <exclusion>
- <artifactId>objenesis</artifactId>
- <groupId>org.objenesis</groupId>
- </exclusion>
- <exclusion>
- <artifactId>minlog</artifactId>
- <groupId>com.esotericsoftware</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>de.ruedigermoeller</groupId>
- <artifactId>fst</artifactId>
- <version>2.57</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>objenesis</artifactId>
- <groupId>org.objenesis</groupId>
- </exclusion>
- <exclusion>
- <artifactId>jackson-core</artifactId>
- <groupId>com.fasterxml.jackson.core</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.caucho</groupId>
- <artifactId>hessian</artifactId>
- <version>4.0.63</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>de.javakaffee</groupId>
- <artifactId>kryo-serializers</artifactId>
- <version>0.45</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.lz4</groupId>
- <artifactId>lz4-java</artifactId>
- <version>1.7.1</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </project>
|