Adjust the introduction of the xml rpc module (#7544)

This commit is contained in:
huazhongming 2021-04-14 10:27:54 +08:00 committed by GitHub
parent 74a91d6ffe
commit 6c779a95dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 8 deletions

View File

@ -156,6 +156,7 @@
<test_container_version>1.15.2</test_container_version>
<etcd_launcher_version>0.5.3</etcd_launcher_version>
<hessian_lite_version>3.2.8</hessian_lite_version>
<xmlrpc_version>3.1.3</xmlrpc_version>
<swagger_version>1.5.19</swagger_version>
<metrics_version>2.0.1</metrics_version>
@ -560,6 +561,19 @@
<version>${activation_version}</version>
</dependency>
<!-- for dubbo-rpc-xml -->
<dependency>
<groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc-server</artifactId>
<version>${xmlrpc_version}</version>
</dependency>
<dependency>
<groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc-client</artifactId>
<version>${xmlrpc_version}</version>
</dependency>
<!-- swagger -->
<dependency>
<groupId>io.swagger</groupId>

View File

@ -29,11 +29,6 @@
<name>${project.artifactId}</name>
<description>The xml rpc module of dubbo project</description>
<properties>
<xmlrpc_version>3.1.3</xmlrpc_version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<skip_maven_deploy>false</skip_maven_deploy>
</properties>
<url>https://github.com/apache/dubbo</url>
@ -42,13 +37,17 @@
<dependency>
<groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc-server</artifactId>
<version>${xmlrpc_version}</version>
</dependency>
<dependency>
<groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc-client</artifactId>
<version>${xmlrpc_version}</version>
</dependency>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-rpc-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
@ -59,7 +58,7 @@
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-compatible</artifactId>
<artifactId>dubbo-config-spring</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>