@@ -12,28 +12,52 @@ Java idiomatic client for [Vertex AI][product-docs].
1212## Quickstart
1313
1414
15- If you are using Maven, add this to your pom.xml file:
15+ If you are using Maven with [ BOM ] [ libraries-bom ] , add this to your pom.xml file:
1616
17+ ``` xml
18+ <dependencyManagement >
19+ <dependencies >
20+ <dependency >
21+ <groupId >com.google.cloud</groupId >
22+ <artifactId >libraries-bom</artifactId >
23+ <version >26.11.0</version >
24+ <type >pom</type >
25+ <scope >import</scope >
26+ </dependency >
27+ </dependencies >
28+ </dependencyManagement >
29+
30+ <dependencies >
31+ <dependency >
32+ <groupId >com.google.cloud</groupId >
33+ <artifactId >google-cloud-aiplatform</artifactId >
34+ </dependency >
35+ ```
36+
37+ If you are using Maven without the BOM, add this to your dependencies:
38+
39+ <!-- {x-version-update-start:google-cloud-aiplatform:released} -->
1740
1841``` xml
1942<dependency >
2043 <groupId >com.google.cloud</groupId >
2144 <artifactId >google-cloud-aiplatform</artifactId >
22- <version >3.14 .0</version >
45+ <version >3.15 .0</version >
2346</dependency >
2447```
2548
2649If you are using Gradle without BOM, add this to your dependencies:
2750
2851``` Groovy
29- implementation 'com.google.cloud:google-cloud-aiplatform:3.14 .0'
52+ implementation 'com.google.cloud:google-cloud-aiplatform:3.15 .0'
3053```
3154
3255If you are using SBT, add this to your dependencies:
3356
3457``` Scala
35- libraryDependencies += " com.google.cloud" % " google-cloud-aiplatform" % " 3.14 .0"
58+ libraryDependencies += " com.google.cloud" % " google-cloud-aiplatform" % " 3.15 .0"
3659```
60+ <!-- {x-version-update-end} -->
3761
3862## Authentication
3963
@@ -171,15 +195,15 @@ Java is a registered trademark of Oracle and/or its affiliates.
171195[ kokoro-badge-link-5 ] : http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html
172196[ stability-image ] : https://img.shields.io/badge/stability-stable-green
173197[ maven-version-image ] : https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-aiplatform.svg
174- [ maven-version-link ] : https://central.sonatype.com/artifact/com.google.cloud/google-cloud-aiplatform/3.14 .0
198+ [ maven-version-link ] : https://central.sonatype.com/artifact/com.google.cloud/google-cloud-aiplatform/3.15 .0
175199[ authentication ] : https://github.com/googleapis/google-cloud-java#authentication
176200[ auth-scopes ] : https://developers.google.com/identity/protocols/oauth2/scopes
177201[ predefined-iam-roles ] : https://cloud.google.com/iam/docs/understanding-roles#predefined_roles
178202[ iam-policy ] : https://cloud.google.com/iam/docs/overview#cloud-iam-policy
179203[ developer-console ] : https://console.developers.google.com/
180204[ create-project ] : https://cloud.google.com/resource-manager/docs/creating-managing-projects
181205[ cloud-cli ] : https://cloud.google.com/cli
182- [ troubleshooting ] : https://github.com/googleapis/google-cloud-common /blob/main/troubleshooting/readme .md#troubleshooting
206+ [ troubleshooting ] : https://github.com/googleapis/google-cloud-java /blob/main/TROUBLESHOOTING .md
183207[ contributing ] : https://github.com/googleapis/google-cloud-java/blob/main/CONTRIBUTING.md
184208[ code-of-conduct ] : https://github.com/googleapis/google-cloud-java/blob/main/CODE_OF_CONDUCT.md#contributor-code-of-conduct
185209[ license ] : https://github.com/googleapis/google-cloud-java/blob/main/LICENSE
0 commit comments