@@ -21,7 +21,7 @@ Java idiomatic client for [{{metadata['repo']['name_pretty']}}][product-docs].
21
21
## Quickstart
22
22
23
23
{% if 'snippets' in metadata and metadata[ 'snippets'] [ metadata[ 'repo'] [ 'api_shortname' ] + '_ install_with_bom'] -%}
24
- If you are using Maven with [ BOM] [ libraries-bom ] , add this to your pom.xml file
24
+ If you are using Maven with [ BOM] [ libraries-bom ] , add this to your pom.xml file:
25
25
26
26
``` xml
27
27
{{ metadata['snippets'][metadata['repo']['api_shortname'] + '_install_with_bom'] }}
@@ -45,7 +45,7 @@ If you are using Maven, add this to your pom.xml file:
45
45
```
46
46
47
47
{% if 'snippets' in metadata and metadata[ 'snippets'] [ metadata[ 'repo'] [ 'api_shortname' ] + '_ install_with_bom'] -%}
48
- If you are using Gradle 5.x or later, add this to your dependencies
48
+ If you are using Gradle 5.x or later, add this to your dependencies:
49
49
50
50
``` Groovy
51
51
implementation platform('com.google.cloud:libraries-bom:{{metadata['latest_bom_version']}}')
@@ -54,13 +54,13 @@ implementation '{{ group_id }}:{{ artifact_id }}'
54
54
```
55
55
{% endif -%}
56
56
57
- If you are using Gradle without BOM, add this to your dependencies
57
+ If you are using Gradle without BOM, add this to your dependencies:
58
58
59
59
``` Groovy
60
60
implementation '{{ group_id }}:{{ artifact_id }}:{{ metadata['latest_version'] }}'
61
61
```
62
62
63
- If you are using SBT, add this to your dependencies
63
+ If you are using SBT, add this to your dependencies:
64
64
65
65
``` Scala
66
66
libraryDependencies += " {{ group_id }}" % " {{ artifact_id }}" % " {{ metadata['latest_version'] }}"
0 commit comments