### Installing Bitmovin API SDK to Local Maven Repository Source: https://github.com/bitmovin/bitmovin-api-sdk-java/blob/main/README.md Executes the Maven clean install command to build and install the Bitmovin API SDK artifact into the local Maven repository. ```Shell mvn clean install ``` -------------------------------- ### Initializing Bitmovin API SDK Client in Java Source: https://github.com/bitmovin/bitmovin-api-sdk-java/blob/main/README.md Imports the BitmovinApi class and initializes a new instance using the builder pattern, requiring an API key for authentication. ```Java import com.bitmovin.api.sdk.BitmovinApi; BitmovinApi bitmovinApi = BitmovinApi.builder() .withApiKey("") .build(); ``` -------------------------------- ### Adding Bitmovin API SDK Dependency with Gradle Source: https://github.com/bitmovin/bitmovin-api-sdk-java/blob/main/README.md Adds the Bitmovin API SDK as a compile dependency to a Gradle project's build file. Specifies the group, name, and version. ```Groovy compile group: 'com.bitmovin.api.sdk', name: 'bitmovin-api-sdk', version: '1.230.0' ``` -------------------------------- ### Adding Bitmovin API SDK Dependency with Maven Source: https://github.com/bitmovin/bitmovin-api-sdk-java/blob/main/README.md Adds the Bitmovin API SDK as a dependency to a Maven project's POM file. Specifies the group ID, artifact ID, version, and scope. ```XML com.bitmovin.api.sdk bitmovin-api-sdk 1.230.0 compile ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.