Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: fix Java 11 build errors #286

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions google-cloud-bigquery/pom.xml
Expand Up @@ -157,6 +157,8 @@
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<!-- Adding version here because flatten cannot interpret this -->
<version>${javax.annotations.version}</version>
</dependency>
</dependencies>
</profile>
Expand Down
5 changes: 0 additions & 5 deletions pom.xml
Expand Up @@ -161,11 +161,6 @@
<artifactId>threetenbp</artifactId>
<version>${threeten.version}</version>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>${javax.annotations.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-annotations</artifactId>
Expand Down
5 changes: 3 additions & 2 deletions samples/snapshot/pom.xml
Expand Up @@ -46,6 +46,7 @@
<artifactId>google-cloud-bigquery</artifactId>
<version>1.111.1-SNAPSHOT</version>
</dependency>
<!-- {x-version-update-end} -->

<!-- Test dependencies -->
<dependency>
Expand All @@ -57,10 +58,10 @@
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<version>1.111.1-SNAPSHOT</version>
<version>1.0.1</version>
<scope>test</scope>
</dependency>
<!-- {x-version-update-end} -->

</dependencies>

<!-- compile and run all snippet tests -->
Expand Down