Skip to content

Commit 6c779a9

Browse files
authored
Adjust the introduction of the xml rpc module (#7544)
1 parent 74a91d6 commit 6c779a9

2 files changed

Lines changed: 21 additions & 8 deletions

File tree

dubbo-dependencies-bom/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@
156156
<test_container_version>1.15.2</test_container_version>
157157
<etcd_launcher_version>0.5.3</etcd_launcher_version>
158158
<hessian_lite_version>3.2.8</hessian_lite_version>
159+
<xmlrpc_version>3.1.3</xmlrpc_version>
159160
<swagger_version>1.5.19</swagger_version>
160161

161162
<metrics_version>2.0.1</metrics_version>
@@ -560,6 +561,19 @@
560561
<version>${activation_version}</version>
561562
</dependency>
562563

564+
<!-- for dubbo-rpc-xml -->
565+
<dependency>
566+
<groupId>org.apache.xmlrpc</groupId>
567+
<artifactId>xmlrpc-server</artifactId>
568+
<version>${xmlrpc_version}</version>
569+
</dependency>
570+
571+
<dependency>
572+
<groupId>org.apache.xmlrpc</groupId>
573+
<artifactId>xmlrpc-client</artifactId>
574+
<version>${xmlrpc_version}</version>
575+
</dependency>
576+
563577
<!-- swagger -->
564578
<dependency>
565579
<groupId>io.swagger</groupId>

dubbo-rpc/dubbo-rpc-xml/pom.xml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@
2929
<name>${project.artifactId}</name>
3030
<description>The xml rpc module of dubbo project</description>
3131
<properties>
32-
<xmlrpc_version>3.1.3</xmlrpc_version>
33-
<maven.compiler.source>1.8</maven.compiler.source>
34-
<maven.compiler.target>1.8</maven.compiler.target>
35-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
3732
<skip_maven_deploy>false</skip_maven_deploy>
3833
</properties>
3934
<url>https://github.com/apache/dubbo</url>
@@ -42,13 +37,17 @@
4237
<dependency>
4338
<groupId>org.apache.xmlrpc</groupId>
4439
<artifactId>xmlrpc-server</artifactId>
45-
<version>${xmlrpc_version}</version>
4640
</dependency>
4741

4842
<dependency>
4943
<groupId>org.apache.xmlrpc</groupId>
5044
<artifactId>xmlrpc-client</artifactId>
51-
<version>${xmlrpc_version}</version>
45+
</dependency>
46+
47+
<dependency>
48+
<groupId>org.apache.dubbo</groupId>
49+
<artifactId>dubbo-rpc-api</artifactId>
50+
<version>${project.parent.version}</version>
5251
</dependency>
5352

5453
<dependency>
@@ -59,7 +58,7 @@
5958

6059
<dependency>
6160
<groupId>org.apache.dubbo</groupId>
62-
<artifactId>dubbo-compatible</artifactId>
61+
<artifactId>dubbo-config-spring</artifactId>
6362
<version>${project.parent.version}</version>
6463
</dependency>
6564
</dependencies>

0 commit comments

Comments
 (0)