Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

Commit

Permalink
Reference libraries-bom in docs (#12)
Browse files Browse the repository at this point in the history
* Add .gitignore file and Reference libraries-bom in docs

* Fix review changes
  • Loading branch information
athakor authored and chingor13 committed Nov 12, 2019
1 parent d21a162 commit 9eadd20
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .gitignore
@@ -0,0 +1,15 @@
# Maven
target/

# Eclipse
.classpath
.project
.settings

# Intellij
*.iml
.idea/

# python utilities
*.pyc
__pycache__
20 changes: 19 additions & 1 deletion README.md
Expand Up @@ -15,9 +15,27 @@ Java idiomatic client for [Google Cloud Video Intelligence][cloud-video-intellig
Quickstart
----------
If you are using Maven with a BOM, add this to your pom.xml file.
```xml
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>libraries-bom</artifactId>
<version>2.8.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-video-intelligence</artifactId>
</dependency>
```
[//]: # ({x-version-update-start:google-cloud-video-intelligence:released})
If you are using Maven, add this to your pom.xml file
If you are using Maven without a BOM, add this to your dependencies.
```xml
<dependency>
<groupId>com.google.cloud</groupId>
Expand Down

0 comments on commit 9eadd20

Please sign in to comment.