diff --git a/pom.xml b/pom.xml index 455b167..1a76217 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.alipay.sofa sofa-rpc-boot-projects - 5.5.3-SNAPSHOT + 5.5.3 pom ${project.groupId}:${project.artifactId} diff --git a/sofa-boot-core/pom.xml b/sofa-boot-core/pom.xml index 61589eb..bceab46 100644 --- a/sofa-boot-core/pom.xml +++ b/sofa-boot-core/pom.xml @@ -5,12 +5,12 @@ com.alipay.sofa sofaboot-dependencies - 2.6.3 + 2.6.4 4.0.0 rpc-sofa-boot-core - 5.5.3-SNAPSHOT + 5.5.3 https://github.com/sofastack/sofa-rpc @@ -23,7 +23,7 @@ 2.4.10 3.0.14 false - 5.5.3-SNAPSHOT + 5.5.3 0.10 3.3 3.0.1 diff --git a/sofa-boot-plugin/pom.xml b/sofa-boot-plugin/pom.xml index 50b2b13..94b2093 100644 --- a/sofa-boot-plugin/pom.xml +++ b/sofa-boot-plugin/pom.xml @@ -5,16 +5,16 @@ com.alipay.sofa sofaboot-dependencies - 2.6.3 + 2.6.4 4.0.0 rpc-sofa-boot-plugin - 5.5.3-SNAPSHOT + 5.5.3 rpc-sofa-boot-plugin - 5.5.3-SNAPSHOT + 5.5.3 2.10.4 3.0.1 0.4 diff --git a/sofa-boot-samples/pom.xml b/sofa-boot-samples/pom.xml index c1dc8b8..e0cb58c 100644 --- a/sofa-boot-samples/pom.xml +++ b/sofa-boot-samples/pom.xml @@ -7,14 +7,14 @@ com.alipay.sofa sofa-rpc-boot-projects - 5.5.3-SNAPSHOT + 5.5.3 2.4.10 3.0.14 - 2.6.2 - 5.5.3-SNAPSHOT + 2.6.3 + 5.5.3 2.9.1 4.12 1.4.2.RELEASE diff --git a/sofa-boot-starter/pom.xml b/sofa-boot-starter/pom.xml index 5cb0464..d02b111 100644 --- a/sofa-boot-starter/pom.xml +++ b/sofa-boot-starter/pom.xml @@ -5,12 +5,12 @@ com.alipay.sofa sofaboot-dependencies - 2.6.3 + 2.6.4 4.0.0 rpc-sofa-boot-starter - 5.5.3-SNAPSHOT + 5.5.3 https://github.com/sofastack/sofa-rpc @@ -18,7 +18,7 @@ 1.6 UTF-8 false - 5.5.3-SNAPSHOT + 5.5.3 3.3 3.0.1 3.0 diff --git a/sofa-boot-starter/src/test/java/com/alipay/sofa/rpc/test/registry/MultiRegistryTest.java b/sofa-boot-starter/src/test/java/com/alipay/sofa/rpc/test/registry/MultiRegistryTest.java index 862dac2..da450d7 100644 --- a/sofa-boot-starter/src/test/java/com/alipay/sofa/rpc/test/registry/MultiRegistryTest.java +++ b/sofa-boot-starter/src/test/java/com/alipay/sofa/rpc/test/registry/MultiRegistryTest.java @@ -17,6 +17,7 @@ package com.alipay.sofa.rpc.test.registry; import com.alipay.sofa.rpc.boot.registry.MultiRegistryService; +import com.alipay.sofa.rpc.core.exception.SofaRouteException; import com.alipay.sofa.rpc.core.exception.SofaRpcException; import com.alipay.sofa.rpc.test.base.ActivelyDestroyTest; import org.junit.Ignore; @@ -53,7 +54,7 @@ public void testInvokeWithMultiRegistry() throws InterruptedException { System.out.println("multi registry:" + result); } catch (Exception e) { e.printStackTrace(); - assertEquals(SofaRpcException.class, e.getClass()); + assertEquals(SofaRouteException.class, e.getClass()); } }