Skip to content

Commit 6f610d3

Browse files
committed
refactor: address PR review feedback
1 parent 86a38c9 commit 6f610d3

File tree

1 file changed

+7
-22
lines changed

1 file changed

+7
-22
lines changed

google-cloud-bigquery-jdbc/README.MD

Lines changed: 7 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,20 @@ If you are using Maven, add this to your pom.xml file:
1818
<dependency>
1919
<groupId>com.google.cloud</groupId>
2020
<artifactId>google-cloud-bigquery-jdbc</artifactId>
21-
<version><version></version>
21+
<version>LATEST_VERSION</version>
2222
</dependency>
2323
```
2424

2525
If you are using Gradle without BOM, add this to your dependencies:
2626

2727
```Groovy
28-
implementation 'com.google.cloud:google-cloud-bigquery-jdbc:<version>'
28+
implementation 'com.google.cloud:google-cloud-bigquery-jdbc:LATEST_VERSION'
2929
```
3030

3131
If you are using SBT, add this to your dependencies:
3232

3333
```Scala
34-
libraryDependencies += "com.google.cloud" % "google-cloud-bigquery-jdbc" % "<version>"
34+
libraryDependencies += "com.google.cloud" % "google-cloud-bigquery-jdbc" % "LATEST_VERSION"
3535
```
3636

3737
## Authentication
@@ -73,7 +73,7 @@ Example: `make unittest test=BigQueryArrowStructTest`
7373

7474
IMPORTANT: Running integration tests will skip unit tests by default. To include unit tests, run `make integration-test skipSurefire=false`. Primary focus of this command is to run specific set of tests without a lot of overhead.
7575

76-
Majority of Integration tests rely on certain environment variables:
76+
Set the following environment variables to run the integration tests:
7777

7878
```
7979
# Default gcloud auth setup
@@ -142,6 +142,8 @@ You can also build a shaded jar with all dependencies. This can be done by runni
142142

143143
The nightly build runs the full set of integration tests, including the `ITBigQueryJDBCTest` and `ITNightlyBigQueryTest` test suites. It also includes some long-running tests (takes 20+ minutes to complete).
144144

145+
**Note:** These builds are intended for testing and development purposes only and are not recommended for production use.
146+
145147
Nightly Integration Tests include a step to build a full and thin jars and upload them to Google Storage.
146148

147149
They can be retrieved via following commands:
@@ -153,7 +155,7 @@ gsutil cp gs://bq_devtools_release_private/drivers/jdbc/google-cloud-bigquery-jd
153155

154156
#### Performance tests
155157

156-
Cloud Build Pipeline is uploading latest full jar to the internal location for perf tests once a week, at the moment scheduled to do this Sunday night.
158+
Cloud Build Pipeline is uploading latest full jar to the internal location for perf tests once a week.
157159

158160
### Code Coverage
159161

@@ -263,27 +265,10 @@ information.
263265

264266
Apache 2.0 - See [LICENSE][license] for more information.
265267

266-
## CI Status
267-
268-
Java Version | Status
269-
------------ | ------
270-
Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2]
271-
Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3]
272-
Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4]
273-
Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5]
274-
275268
Java is a registered trademark of Oracle and/or its affiliates.
276269

277270
[product-docs]: https://cloud.google.com/bigquery
278271
[javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-bigquery/latest/history
279-
[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigquery-jdbc/java8.svg
280-
[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigquery-jdbc/java8.html
281-
[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigquery-jdbc/java8-osx.svg
282-
[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigquery-jdbc/java8-osx.html
283-
[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigquery-jdbc/java8-win.svg
284-
[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigquery-jdbc/java8-win.html
285-
[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigquery-jdbc/java11.svg
286-
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigquery-jdbc/java11.html
287272
[stability-image]: https://img.shields.io/badge/stability-unknown-red
288273
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-bigquery-jdbc.svg
289274
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-bigquery-jdbc/0.0.0

0 commit comments

Comments
 (0)