litian33 commented on issue #2422: add cluster nacos support URL: https://github.com/apache/incubator-skywalking/pull/2422#issuecomment-477883718 > > This feature depends on alibaba/nacos (https://github.com/alibaba/nacos). > > Does `nacos-client` depend on other 3rd-party libs? I assume YES. And what are they? This is the list of 3rd-party libs depended by nacos-client: ```xml <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>nacos-common</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>nacos-api</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <artifactId>commons-codec</artifactId> <groupId>commons-codec</groupId> </dependency> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-lgpl</artifactId> </dependency> <dependency> <groupId>net.jcip</groupId> <artifactId>jcip-annotations</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-annotations</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.prometheus</groupId> <artifactId>simpleclient</artifactId> <version>0.5.0</version> </dependency> ``` The license info: | component | license | | --------------- | --------- | | slf4j-api | MIT License | | junit | EPL 1.0 | | spotbugs-annotations | LGPL | | jackson-mapper-lgpl | LGPL 2.1 | | logback | EPL 1.0 & LGPL 2.1 | The other compotents license is APL 2.0.
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
