beiwei30 commented on issue #1937: redis相关模块缺少jar包依赖 URL: https://github.com/apache/incubator-dubbo/issues/1937#issuecomment-397194049 dubbo.jar includes all dubbo relevant files but doesn't include its dependencies, that means, you need to explicitly include the desired dependencies by yourself. For your convenience, you can import the following bom to simplify this part of work: ```xml <dependencyManagement> <dependencies> <dependency> <groupId>com.alibaba</groupId> <artifactId>dubbo-dependencies-bom</artifactId> <version>${dubbo.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
