# cdp-sdk-java **Repository Path**: mirrors_cloudera/cdp-sdk-java ## Basic Information - **Project Name**: cdp-sdk-java - **Description**: Cloudera CDP SDK for Java - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-12-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Cloudera CDP SDK for Java The Cloudera CDP SDK for Java allows Java developers to work with Cloudera CDP services. ## Getting Started ### Prerequisites * **Java 11** or later * **Maven 3.5** or later ### Installing the SDK The CDP SDK is available through Cloudera's maven repository. To include it in your Maven project, use the following declarations: #### Add the Cloudera Maven Repository ```xml cloudera.repo https://repository.cloudera.com/artifactory/cloudera-repos Cloudera Repository ``` #### Include the CDP SDK Module The CDP SDK uses [slf4j](https://www.slf4j.org/) for logging, so you must also include an slf4j implementation for whichever logging library your project will use (eg: log4j, logback, etc), and the jcl-over-slf4j bridge. In this example, we include the log4j implementation. ```xml com.cloudera.cdp cdp-sdk-java org.slf4j slf4j-log4j12 org.slf4j jcl-over-slf4j runtime ``` ## Building the SDK from source After checking out the source code, you can build it using Maven. ```sh mvn clean install ``` ## Sample SDK client This is a sample project for a cdp-sdk-java client. ``` sdk/cdp-sdk-java-client ```