Skip to content

Commit

Permalink
chore: restructure dependencies for the new features related to bigqu…
Browse files Browse the repository at this point in the history
…erystorage Java client

Relates to googleapis#1374
  • Loading branch information
stephaniewang526 committed May 6, 2022
1 parent 78789a5 commit d079779
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 49 deletions.
25 changes: 25 additions & 0 deletions google-cloud-bigquery/pom.xml
Expand Up @@ -93,6 +93,31 @@
<groupId>org.threeten</groupId>
<artifactId>threeten-extra</artifactId>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-bigquerystorage</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-bigquerystorage-v1</artifactId>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-vector</artifactId>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-netty</artifactId>
<scope>runtime</scope>
</dependency>

<!-- auto-value creates a class that uses an annotation from error_prone_annotations -->
<dependency>
Expand Down
82 changes: 33 additions & 49 deletions pom.xml
Expand Up @@ -66,21 +66,39 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- BOM for bigquerystorage-->
<!-- <dependency>
<groupId>com.google.cloud</groupId>
<artifactId>libraries-bom</artifactId>
<version>24.2.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>-->
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-datacatalog-bom</artifactId>
<version>1.6.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<!-- Used for BQ Storage APIs -->
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-bigquerystorage-bom</artifactId>
<version>2.8.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-vector</artifactId>
<version>7.0.0</version>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-core</artifactId>
<version>7.0.0</version>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-netty</artifactId>
<version>7.0.0</version>
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-datacatalog-bom</artifactId>
<version>1.6.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<dependency>
<groupId>com.google.cloud</groupId>
Expand Down Expand Up @@ -170,40 +188,6 @@
</dependencies>
</dependencyManagement>

<dependencies>
<!-- Dependency for bigquerystorage-->
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-bigquerystorage</artifactId>
<version>2.8.3</version>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-bigquerystorage-v1</artifactId>
<version>2.8.3</version>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-vector</artifactId>
<version>7.0.0</version>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-core</artifactId>
<version>7.0.0</version>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-netty</artifactId>
<version>7.0.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>

<modules>
<module>google-cloud-bigquery</module>
</modules>
Expand Down

0 comments on commit d079779

Please sign in to comment.