@@ -21,7 +21,7 @@ Java idiomatic client for [{{metadata['repo']['name_pretty']}}][product-docs].
2121## Quickstart
2222
2323{% 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:
2525
2626``` xml
2727{{ 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:
4545```
4646
4747{% 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:
4949
5050``` Groovy
5151implementation platform('com.google.cloud:libraries-bom:{{metadata['latest_bom_version']}}')
@@ -54,13 +54,13 @@ implementation '{{ group_id }}:{{ artifact_id }}'
5454```
5555{% endif -%}
5656
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:
5858
5959``` Groovy
6060implementation '{{ group_id }}:{{ artifact_id }}:{{ metadata['latest_version'] }}'
6161```
6262
63- If you are using SBT, add this to your dependencies
63+ If you are using SBT, add this to your dependencies:
6464
6565``` Scala
6666libraryDependencies += " {{ group_id }}" % " {{ artifact_id }}" % " {{ metadata['latest_version'] }}"
0 commit comments