pabloem commented on issue #21893: URL: https://github.com/apache/beam/issues/21893#issuecomment-1224682060
The advice in these cases is to try the following: ``` mvn dependency:tree | grep bigquery ``` There you can find the different bigquery-related libraries that you have in your project. Once you've found those, you may find two examples of the same library with different versions - and you can fix this with `dependencyManagement` - usually by choosing the later version. You can also use `-Dincludes=` to filter more intelligently than with `grep`: https://maven.apache.org/plugins/maven-dependency-plugin/examples/filtering-the-dependency-tree.html -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
