Hi Jason, We found that is not enough. As you have pointed out the dependency on `http://repo1.maven.org/maven2/org/apache/dubbo/` All dependencies wrapped by org.apache.dubbo:dubbo are marked as optional. This means on our application pom.xml, we have to declare the libraries that we need directly, as they are not brought directly from org.apache.dubbo:dubbo dependencies (check `https://maven.apache.org/guides/introduction/introduction-to-optional-and-excludes-dependencies.html`)
Best Dat On 2019/10/25 01:48:29, Jason Joo <[email protected]> wrote: > Hi, tien > > There is a problem in your `dependencies` section. > `dubbo` is a single package including all codes related dubbo core like > `netty-all` while `dubbo-serialization-kryo` is already included in `dubbo`. > > If you want to do some customizing like removing some useless support in > `dubbo` you could use another way to introduce the dependencies like: > dubbo-common, dubbo-cluster and etc. . > > Certainly it will be so complicated because there are so many packages to > decide which are required to be introduced and you can see the full list in > `http://repo1.maven.org/maven2/org/apache/dubbo/` > <http://repo1.maven.org/maven2/org/apache/dubbo/%60>. > > So generally we just introduce `dubbo` instead. That's already enough. > > best regards, > > Jason > > > On Oct 25, 2019, at 00:31, Tien Dat PHAN <[email protected]> wrote: > > > > the dubbo-common library as the suggestion with the help o > >
