# altus-sdk-java **Repository Path**: mirrors_cloudera/altus-sdk-java ## Basic Information - **Project Name**: altus-sdk-java - **Description**: [EOL] Cloudera Altus 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 Altus SDK for Java :no_entry: *[Cloudera Altus has reached end of life](https://docs.cloudera.com/common/html/altus-eol.html), so this repository is no longer maintained.* :no_entry: *To work with [Cloudera Data Platform (CDP)](https://www.cloudera.com/products/cloudera-data-platform.html), use the [Cloudera CDP SDK for Java](https://github.com/cloudera/cdp-sdk-java) instead.* --- The Cloudera Altus SDK for Java allows Java developers to work with Cloudera Altus services. ## Getting Started ### Prerequisites * **Java 1.8** or later * **Maven 3.5** or later ### Installing the SDK The Altus 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 Altus SDK Module The Altus 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.altus altus-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 ``` ## Using the SDK You can see examples of how to use in the SDK in the separate [Samples Repository](https://github.com/cloudera/altus-sdk-java-samples).