|
1 | 1 | <?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 | | ---> |
17 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
18 | 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
19 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
20 | 5 | <modelVersion>4.0.0</modelVersion> |
21 | 6 |
|
22 | | - <groupId>org.example</groupId> |
| 7 | + <groupId>com.google.cloud</groupId> |
23 | 8 | <artifactId>bigquery-external-jdbc-tests</artifactId> |
24 | 9 | <version>1.0-SNAPSHOT</version> |
25 | 10 |
|
26 | 11 | <properties> |
27 | 12 | <maven.compiler.source>11</maven.compiler.source> |
28 | 13 | <maven.compiler.target>11</maven.compiler.target> |
29 | 14 | <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> |
30 | 17 | </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> |
32 | 27 | <dependencies> |
33 | 28 | <dependency> |
34 | 29 | <groupId>com.google.cloud</groupId> |
|
38 | 33 | <scope>import</scope> |
39 | 34 | </dependency> |
40 | 35 | </dependencies> |
41 | | - </dependencyManagement> |
| 36 | + </dependencyManagement>--> |
42 | 37 | <dependencies> |
43 | 38 | <dependency> |
44 | 39 | <groupId>com.google.cloud</groupId> |
|
48 | 43 | <dependency> |
49 | 44 | <groupId>com.google.cloud</groupId> |
50 | 45 | <artifactId>JDBC</artifactId> |
51 | | - <version>${env.JDBC_VERSION}</version> |
| 46 | + <version>${jdbc.version}</version> |
52 | 47 | <scope>system</scope> |
53 | | - <systemPath>${env.JDBC_JAR_PATH}</systemPath> |
| 48 | + <systemPath>${jdbc.jarPath}</systemPath> |
54 | 49 | </dependency> |
55 | 50 |
|
56 | 51 | <!-- Test dependencies --> |
|
0 commit comments