dousp commented on issue #11156: URL: https://github.com/apache/dubbo/issues/11156#issuecomment-1357296726
i found version in dubbo-dependencies-zookeeper: ``` <zookeeper_version>3.4.14</zookeeper_version> <curator_version>4.2.0</curator_version> ``` But after actually referencing, curator_versio in the project is 5.1.0. after modification: ``` <!-- <dependency> --> <!-- <groupId>org.apache.dubbo</groupId> --> <!-- <artifactId>dubbo-dependencies-zookeeper</artifactId> --> <!-- <type>pom</type> --> <!-- <exclusions> --> <!-- <exclusion> --> <!-- <groupId>org.apache.zookeeper</groupId> --> <!-- <artifactId>zookeeper</artifactId> --> <!-- </exclusion> --> <!-- </exclusions> --> <!-- </dependency> --> <dependency> <groupId>org.apache.curator</groupId> <artifactId>curator-x-discovery</artifactId> <version>4.2.0</version> </dependency> <!-- <dependency> --> <!-- <groupId>org.apache.curator</groupId> --> <!-- <artifactId>curator-client</artifactId> --> <!-- <version>4.2.0</version> --> <!-- </dependency> --> <dependency> <groupId>org.apache.curator</groupId> <artifactId>curator-framework</artifactId> <version>4.2.0</version> </dependency> <dependency> <groupId>org.apache.curator</groupId> <artifactId>curator-recipes</artifactId> <version>4.2.0</version> <exclusions> <exclusion> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> <version>3.4.14</version> </dependency> ``` The project is finally ready to run。。。。 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org For additional commands, e-mail: notifications-h...@dubbo.apache.org