Skip to content

Commit 64d970b

Browse files
committed
chore: add a parent in pom
1 parent bb773b2 commit 64d970b

File tree

1 file changed

+15
-20
lines changed
  • java-bigquery/google-cloud-bigquery-jdbc/bigquery-external-jdbc-tests

1 file changed

+15
-20
lines changed

java-bigquery/google-cloud-bigquery-jdbc/bigquery-external-jdbc-tests/pom.xml

Lines changed: 15 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,29 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<!--
3-
Copyright 2026 Google LLC
4-
5-
Licensed under the Apache License, Version 2.0 (the "License");
6-
you may not use this file except in compliance with the License.
7-
You may obtain a copy of the License at
8-
9-
http://www.apache.org/licenses/LICENSE-2.0
10-
11-
Unless required by applicable law or agreed to in writing, software
12-
distributed under the License is distributed on an "AS IS" BASIS,
13-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14-
See the License for the specific language governing permissions and
15-
limitations under the License.
16-
-->
172
<project xmlns="http://maven.apache.org/POM/4.0.0"
183
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
194
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
205
<modelVersion>4.0.0</modelVersion>
216

22-
<groupId>org.example</groupId>
7+
<groupId>com.google.cloud</groupId>
238
<artifactId>bigquery-external-jdbc-tests</artifactId>
249
<version>1.0-SNAPSHOT</version>
2510

2611
<properties>
2712
<maven.compiler.source>11</maven.compiler.source>
2813
<maven.compiler.target>11</maven.compiler.target>
2914
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
<jdbc.version>${env.JDBC_VERSION}</jdbc.version>
16+
<jdbc.jarPath>${env.JDBC_JAR_PATH}</jdbc.jarPath>
3017
</properties>
31-
<dependencyManagement>
18+
19+
<parent>
20+
<groupId>com.google.cloud</groupId>
21+
<artifactId>google-cloud-bigquery-parent</artifactId>
22+
<version>2.63.0-SNAPSHOT</version><!-- {x-version-update:google-cloud-bigquery:current} -->
23+
<relativePath>../../pom.xml</relativePath>
24+
</parent>
25+
26+
<!-- <dependencyManagement>
3227
<dependencies>
3328
<dependency>
3429
<groupId>com.google.cloud</groupId>
@@ -38,7 +33,7 @@
3833
<scope>import</scope>
3934
</dependency>
4035
</dependencies>
41-
</dependencyManagement>
36+
</dependencyManagement>-->
4237
<dependencies>
4338
<dependency>
4439
<groupId>com.google.cloud</groupId>
@@ -48,9 +43,9 @@
4843
<dependency>
4944
<groupId>com.google.cloud</groupId>
5045
<artifactId>JDBC</artifactId>
51-
<version>${env.JDBC_VERSION}</version>
46+
<version>${jdbc.version}</version>
5247
<scope>system</scope>
53-
<systemPath>${env.JDBC_JAR_PATH}</systemPath>
48+
<systemPath>${jdbc.jarPath}</systemPath>
5449
</dependency>
5550

5651
<!-- Test dependencies -->

0 commit comments

Comments
 (0)