### Set up Google Cloud Authentication for Dataplex Source: https://context7.com/googleapis/java-dataplex/llms.txt These commands configure your local environment for authentication with Google Cloud and enable the Dataplex API. This is a prerequisite for using the Dataplex client library. Ensure you replace `YOUR_PROJECT_ID` with your actual project identifier. ```bash # Authenticate with Google Cloud gcloud auth login # Set your project ID gcloud config set project YOUR_PROJECT_ID # Enable the Dataplex API gcloud services enable dataplex.googleapis.com # Enable billing for your project (required) # Visit: https://console.cloud.google.com/billing ``` -------------------------------- ### Configure Gradle Dependency for Google Cloud Dataplex Java Client Source: https://context7.com/googleapis/java-dataplex/llms.txt This snippet demonstrates how to include the Google Cloud Dataplex client library in your Gradle project. This allows your application to utilize Dataplex functionalities. The version specified is the latest available at the time of archiving. ```groovy implementation 'com.google.cloud:google-cloud-dataplex:1.3.0' ``` -------------------------------- ### Configure SBT Dependency for Google Cloud Dataplex Java Client Source: https://context7.com/googleapis/java-dataplex/llms.txt This snippet provides the configuration for adding the Google Cloud Dataplex client library as a dependency in your Scala Build Tool (SBT) project. This enables programmatic access to Dataplex features from Scala applications. ```scala libraryDependencies += "com.google.cloud" % "google-cloud-dataplex" % "1.3.0" ``` -------------------------------- ### Configure Maven Dependency for Google Cloud Dataplex Java Client Source: https://context7.com/googleapis/java-dataplex/llms.txt This snippet shows how to add the Google Cloud Dataplex client library as a Maven dependency to your Java project. Ensure you are using a compatible version. The artifact coordinates remain unchanged after the project's move to the monorepo. ```xml com.google.cloud google-cloud-dataplex 1.3.0 ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.