0

作为一个 Maven 用户,我想知道在哪里可以找到最新的bigQuery 修订版。

实际上,我正在从code.google.com 上的 Api wiki检索它,但不确定这是指定的最新版本:

注意:服务器上的最新版本号 (rev#) 可能略高于此处指定的版本号。

我问这个问题是因为我阅读了昨天(14 月 3 日)发布的文章,其中宣布了 BQ 的一些更改,例如引入 TIMESTAMP 字段,但我无法使用以下修订版使其工作

v2-rev67-1.13.2-beta

4

1 回答 1

0

刚刚在 2013 年 3 月 13 日更新了 Maven 仓库。

有关最新 Java 库的信息在这里: https ://google-api-client-libraries.appspot.com/apis/bigquery/v2?lang=java

示例 pom.xml 添加:

<repositories>
    <repository>
      <id>google-api-services</id>
      <url>http://google-api-client-libraries.appspot.com/mavenrepo/</url>
    </repository>
  </repositories>
  ...
  <dependencies>
    <dependency>
      <groupId>com.google.apis</groupId>
      <artifactId>google-api-services-bigquery</artifactId>
      <version>v2-rev67-1.13.2-beta</version>
    </dependency>
  </dependencies>
于 2013-03-15T16:49:24.983 回答