carbon-client-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.zhibaocloud</groupId> <artifactId>carbon-client-sdk</artifactId> <version>1.4.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2018-2023. Chengdu WeiSiFan Technology Co., Ltd. ~ Carbon Integration SDK is licensed under Mulan PSL v2. ~ ~ You can use this software according to the terms and conditions of the Mulan PSL v2. ~ You may obtain a copy of Mulan PSL v2 at: http://license.coscl.org.cn/MulanPSL2 ~ ~ THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, ~ EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, ~ MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. ~ See the Mulan PSL v2 for more details. --> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.zhibaocloud</groupId> <artifactId>carbon-integration</artifactId> <version>1.4.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>carbon-client-sdk</artifactId> <name>Carbon Client SDK</name> <description>供客户端(数据推送端)使用的SDK,封装了和服务器端交互的约定细节</description> <dependencies> <dependency> <groupId>com.zhibaocloud</groupId> <artifactId>carbon-exchange</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.github.jsonzou</groupId> <artifactId>jmockdata</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.zhibaocloud</groupId> <artifactId>carbon-mock</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.zhibaocloud</groupId> <artifactId>carbon-serialization-jackson</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.zhibaocloud</groupId> <artifactId>carbon-serialization-fastjson2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.alibaba.fastjson2</groupId> <artifactId>fastjson2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.zhibaocloud</groupId> <artifactId>carbon-serialization-gson</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <scope>test</scope> </dependency> </dependencies> </project>