@@ -11,59 +11,29 @@ Java idiomatic client for [Cloud DNS][product-docs].
1111
1212## Quickstart
1313
14- If you are using Maven with [ BOM ] [ libraries-bom ] , add this to your pom.xml file
14+ If you are using Maven, add this to your pom.xml file
1515
16- ``` xml
17- <!-- - {x-version-update-start: <artifactId>libraries-bom:released} -->
18- <dependencyManagement >
19- <dependencies >
20- <dependency >
21- <groupId >com.google.cloud</groupId >
22- <artifactId >libraries-bom</artifactId >
23- <version >22.0.0</version >
24- <type >pom</type >
25- <scope >import</scope >
26- </dependency >
27- </dependencies >
28- </dependencyManagement >
16+ <!-- - {x-version-update-start:google-cloud-dns:released} -->
2917
18+ ``` xml
3019<dependencies >
3120 <dependency >
3221 <groupId >com.google.cloud</groupId >
3322 <artifactId >google-cloud-dns</artifactId >
23+ <version >2.10.0</version >
3424 </dependency >
35-
3625```
3726
38- If you are using Maven without BOM, add this to your dependencies:
39-
40-
41- ``` xml
42- <dependency >
43- <groupId >com.google.cloud</groupId >
44- <artifactId >google-cloud-dns</artifactId >
45- <version >1.2.8</version >
46- </dependency >
47-
48- ```
49-
50- If you are using Gradle 5.x or later, add this to your dependencies
51-
52- ``` Groovy
53- implementation platform('com.google.cloud:libraries-bom:22.0.0')
54-
55- implementation 'com.google.cloud:google-cloud-dns'
56- ```
57- If you are using Gradle without BOM, add this to your dependencies
27+ If you are using Gradle, add this to your dependencies
5828
5929``` Groovy
60- implementation 'com.google.cloud:google-cloud-dns:1.2.8 '
30+ implementation 'com.google.cloud:google-cloud-dns:2.10.0 '
6131```
6232
6333If you are using SBT, add this to your dependencies
6434
6535``` Scala
66- libraryDependencies += " com.google.cloud" % " google-cloud-dns" % " 1.2.8 "
36+ libraryDependencies += " com.google.cloud" % " google-cloud-dns" % " 2.10.0 "
6737```
6838<!-- - {x-version-update-end} -->
6939
0 commit comments