From 58f95dce8fab1e3598944939b1325e9e8e831d72 Mon Sep 17 00:00:00 2001 From: CodingSinger Date: Mon, 22 Jul 2019 11:18:30 +0800 Subject: [PATCH] =?UTF-8?q?add=20arvo=E3=80=81gson=E3=80=81fastsjon?= =?UTF-8?q?=E3=80=81protostuff?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dubbo-avro-client/pom.xml | 41 +++++++++++++++ .../src/main/resources/consumer.xml | 16 ++++++ dubbo-avro-server/pom.xml | 40 +++++++++++++++ .../src/main/resources/provider.xml | 16 ++++++ dubbo-fastjson-client/pom.xml | 41 +++++++++++++++ .../src/main/resources/consumer.xml | 16 ++++++ dubbo-fastjson-server/pom.xml | 41 +++++++++++++++ .../src/main/resources/provider.xml | 16 ++++++ dubbo-gson-client/pom.xml | 34 +++++++++++++ .../src/main/resources/consumer.xml | 12 +++++ dubbo-gson-server/pom.xml | 34 +++++++++++++ .../src/main/resources/provider.xml | 12 +++++ dubbo-native-hessian-server/pom.xml | 2 +- dubbo-protostuff-client/pom.xml | 51 +++++++++++++++++++ .../src/main/resources/consumer.xml | 12 +++++ dubbo-protostuff-server/pom.xml | 51 +++++++++++++++++++ .../src/main/resources/provider.xml | 13 +++++ pom.xml | 10 +++- 18 files changed, 456 insertions(+), 2 deletions(-) create mode 100644 dubbo-avro-client/pom.xml create mode 100644 dubbo-avro-client/src/main/resources/consumer.xml create mode 100644 dubbo-avro-server/pom.xml create mode 100644 dubbo-avro-server/src/main/resources/provider.xml create mode 100644 dubbo-fastjson-client/pom.xml create mode 100644 dubbo-fastjson-client/src/main/resources/consumer.xml create mode 100644 dubbo-fastjson-server/pom.xml create mode 100644 dubbo-fastjson-server/src/main/resources/provider.xml create mode 100644 dubbo-gson-client/pom.xml create mode 100644 dubbo-gson-client/src/main/resources/consumer.xml create mode 100644 dubbo-gson-server/pom.xml create mode 100644 dubbo-gson-server/src/main/resources/provider.xml create mode 100644 dubbo-protostuff-client/pom.xml create mode 100644 dubbo-protostuff-client/src/main/resources/consumer.xml create mode 100644 dubbo-protostuff-server/pom.xml create mode 100644 dubbo-protostuff-server/src/main/resources/provider.xml diff --git a/dubbo-avro-client/pom.xml b/dubbo-avro-client/pom.xml new file mode 100644 index 0000000..ea76927 --- /dev/null +++ b/dubbo-avro-client/pom.xml @@ -0,0 +1,41 @@ + + + + dubbo-benchmark + org.apache.dubbo + 1.0-SNAPSHOT + + 4.0.0 + + dubbo-avro-client + + + org.apache.avro + avro + + + + + + org.apache.maven.plugins + maven-dependency-plugin + true + + + + org.apache.maven.plugins + maven-jar-plugin + true + + + + org.apache.dubbo.benchmark.Client + + + + + + + \ No newline at end of file diff --git a/dubbo-avro-client/src/main/resources/consumer.xml b/dubbo-avro-client/src/main/resources/consumer.xml new file mode 100644 index 0000000..eb6950d --- /dev/null +++ b/dubbo-avro-client/src/main/resources/consumer.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/dubbo-avro-server/pom.xml b/dubbo-avro-server/pom.xml new file mode 100644 index 0000000..ba3e693 --- /dev/null +++ b/dubbo-avro-server/pom.xml @@ -0,0 +1,40 @@ + + + + dubbo-benchmark + org.apache.dubbo + 1.0-SNAPSHOT + + 4.0.0 + + dubbo-avro-server + + + + org.apache.avro + avro + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + + org.apache.maven.plugins + maven-jar-plugin + + + + org.apache.dubbo.benchmark.Server + + + + + + + \ No newline at end of file diff --git a/dubbo-avro-server/src/main/resources/provider.xml b/dubbo-avro-server/src/main/resources/provider.xml new file mode 100644 index 0000000..0a1cc36 --- /dev/null +++ b/dubbo-avro-server/src/main/resources/provider.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/dubbo-fastjson-client/pom.xml b/dubbo-fastjson-client/pom.xml new file mode 100644 index 0000000..8846b59 --- /dev/null +++ b/dubbo-fastjson-client/pom.xml @@ -0,0 +1,41 @@ + + + + dubbo-benchmark + org.apache.dubbo + 1.0-SNAPSHOT + + 4.0.0 + + dubbo-fastjson-client + + + + com.alibaba + fastjson + 1.2.58 + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + + org.apache.maven.plugins + maven-jar-plugin + + + + org.apache.dubbo.benchmark.Server + + + + + + + \ No newline at end of file diff --git a/dubbo-fastjson-client/src/main/resources/consumer.xml b/dubbo-fastjson-client/src/main/resources/consumer.xml new file mode 100644 index 0000000..bddeb47 --- /dev/null +++ b/dubbo-fastjson-client/src/main/resources/consumer.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/dubbo-fastjson-server/pom.xml b/dubbo-fastjson-server/pom.xml new file mode 100644 index 0000000..5654d8d --- /dev/null +++ b/dubbo-fastjson-server/pom.xml @@ -0,0 +1,41 @@ + + + + dubbo-benchmark + org.apache.dubbo + 1.0-SNAPSHOT + + 4.0.0 + + dubbo-fastjson-server + + + + com.alibaba + fastjson + 1.2.58 + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + + org.apache.maven.plugins + maven-jar-plugin + + + + org.apache.dubbo.benchmark.Server + + + + + + + \ No newline at end of file diff --git a/dubbo-fastjson-server/src/main/resources/provider.xml b/dubbo-fastjson-server/src/main/resources/provider.xml new file mode 100644 index 0000000..25ec43c --- /dev/null +++ b/dubbo-fastjson-server/src/main/resources/provider.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/dubbo-gson-client/pom.xml b/dubbo-gson-client/pom.xml new file mode 100644 index 0000000..98d29bd --- /dev/null +++ b/dubbo-gson-client/pom.xml @@ -0,0 +1,34 @@ + + + + dubbo-benchmark + org.apache.dubbo + 1.0-SNAPSHOT + + 4.0.0 + + dubbo-gson-client + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + + org.apache.maven.plugins + maven-jar-plugin + + + + org.apache.dubbo.benchmark.Client + + + + + + + \ No newline at end of file diff --git a/dubbo-gson-client/src/main/resources/consumer.xml b/dubbo-gson-client/src/main/resources/consumer.xml new file mode 100644 index 0000000..5c44bbf --- /dev/null +++ b/dubbo-gson-client/src/main/resources/consumer.xml @@ -0,0 +1,12 @@ + + + + + + + \ No newline at end of file diff --git a/dubbo-gson-server/pom.xml b/dubbo-gson-server/pom.xml new file mode 100644 index 0000000..09a58f9 --- /dev/null +++ b/dubbo-gson-server/pom.xml @@ -0,0 +1,34 @@ + + + + dubbo-benchmark + org.apache.dubbo + 1.0-SNAPSHOT + + 4.0.0 + + dubbo-gson-server + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + + org.apache.maven.plugins + maven-jar-plugin + + + + org.apache.dubbo.benchmark.Client + + + + + + + \ No newline at end of file diff --git a/dubbo-gson-server/src/main/resources/provider.xml b/dubbo-gson-server/src/main/resources/provider.xml new file mode 100644 index 0000000..abd1f6e --- /dev/null +++ b/dubbo-gson-server/src/main/resources/provider.xml @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/dubbo-native-hessian-server/pom.xml b/dubbo-native-hessian-server/pom.xml index 5e7cbd4..c1421b8 100644 --- a/dubbo-native-hessian-server/pom.xml +++ b/dubbo-native-hessian-server/pom.xml @@ -20,7 +20,7 @@ org.apache.dubbo - dubbo-serialization-native-hessian + dubbo-serialization-native-hession diff --git a/dubbo-protostuff-client/pom.xml b/dubbo-protostuff-client/pom.xml new file mode 100644 index 0000000..55b0c95 --- /dev/null +++ b/dubbo-protostuff-client/pom.xml @@ -0,0 +1,51 @@ + + + + dubbo-benchmark + org.apache.dubbo + 1.0-SNAPSHOT + + 4.0.0 + + dubbo-protostuff-client + + + + + io.protostuff + protostuff-core + + + io.protostuff + protostuff-runtime + + + + org.objenesis + objenesis + 2.5 + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + + org.apache.maven.plugins + maven-jar-plugin + + + + org.apache.dubbo.benchmark.Client + + + + + + + \ No newline at end of file diff --git a/dubbo-protostuff-client/src/main/resources/consumer.xml b/dubbo-protostuff-client/src/main/resources/consumer.xml new file mode 100644 index 0000000..465157d --- /dev/null +++ b/dubbo-protostuff-client/src/main/resources/consumer.xml @@ -0,0 +1,12 @@ + + + + + + + \ No newline at end of file diff --git a/dubbo-protostuff-server/pom.xml b/dubbo-protostuff-server/pom.xml new file mode 100644 index 0000000..2ff8a28 --- /dev/null +++ b/dubbo-protostuff-server/pom.xml @@ -0,0 +1,51 @@ + + + + dubbo-benchmark + org.apache.dubbo + 1.0-SNAPSHOT + + 4.0.0 + + dubbo-protostuff-server + + + + + io.protostuff + protostuff-core + + + io.protostuff + protostuff-runtime + + + + org.objenesis + objenesis + 2.5 + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + + org.apache.maven.plugins + maven-jar-plugin + + + + org.apache.dubbo.benchmark.Client + + + + + + + \ No newline at end of file diff --git a/dubbo-protostuff-server/src/main/resources/provider.xml b/dubbo-protostuff-server/src/main/resources/provider.xml new file mode 100644 index 0000000..85cb563 --- /dev/null +++ b/dubbo-protostuff-server/src/main/resources/provider.xml @@ -0,0 +1,13 @@ + + + + + + + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml index 408e17f..783d373 100644 --- a/pom.xml +++ b/pom.xml @@ -35,6 +35,14 @@ dubbo-fst-server dubbo-native-hessian-client dubbo-native-hessian-server + dubbo-avro-server + dubbo-avro-client + dubbo-fastjson-client + dubbo-fastjson-server + dubbo-protostuff-server + dubbo-protostuff-client + dubbo-gson-server + dubbo-gson-client @@ -128,7 +136,7 @@ org.apache.dubbo - dubbo-serialization-native-hessian + dubbo-serialization-native-hession ${dubbo.version}