Skip to content

Commit

Permalink
docs(samples): migrate samples into client (#308)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephaniewang526 committed May 28, 2020
1 parent 4f58a46 commit c2161fb
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pom.xml
Expand Up @@ -256,10 +256,20 @@
<link>https://developers.google.com/protocol-buffers/docs/reference/java/</link>
<link>https://googleapis.dev/java/google-auth-library/latest/</link>
<link>https://googleapis.dev/java/gax/latest/</link>
<link>https://googleapis.github.io/api-common-java/${google.api-common.version}/apidocs/</link>
<link>https://googleapis.github.io/api-common-java/</link>
</links>
</configuration>
</plugin>
</plugins>
</reporting>

<profiles>
<profile>
<id>include-samples</id>
<modules>
<module>samples</module>
</modules>
</profile>
</profiles>

</project>
12 changes: 12 additions & 0 deletions samples/install-without-bom/pom.xml
Expand Up @@ -33,6 +33,18 @@
</dependency>
<!-- [END bigquerystorage_install_without_bom] -->

<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro</artifactId>
<version>1.9.2</version>
</dependency>

<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-vector</artifactId>
<version>0.17.1</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
12 changes: 12 additions & 0 deletions samples/snapshot/pom.xml
Expand Up @@ -32,6 +32,18 @@
</dependency>
<!-- {x-version-update-end} -->

<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro</artifactId>
<version>1.9.2</version>
</dependency>

<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-vector</artifactId>
<version>0.17.1</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
13 changes: 13 additions & 0 deletions samples/snippets/pom.xml
Expand Up @@ -44,6 +44,19 @@
</dependency>
<!-- [END bigquerystorage_install_with_bom] -->

<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro</artifactId>
<version>1.9.2</version>
</dependency>

<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-vector</artifactId>
<version>0.17.1</version>
</dependency>

<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down

0 comments on commit c2161fb

Please sign in to comment.