Google cloud platform 缺少MessageReceiver类

Google cloud platform 缺少MessageReceiver类,google-cloud-platform,google-cloud-pubsub,Google Cloud Platform,Google Cloud Pubsub,我找不到ProjectSubscriptionName/MessageReceiver类和eclipse reporting ProjectSubscriptionName/MessageReceiver类无法解决通过在pom.xml文件中定义导入到构建路径的相关google cloud pubsub jar的错误 pom.xml: <dependency> <groupId>com.google.cloud.dataflow</groupId>

我找不到ProjectSubscriptionName/MessageReceiver类和eclipse reporting ProjectSubscriptionName/MessageReceiver类无法解决通过在pom.xml文件中定义导入到构建路径的相关google cloud pubsub jar的错误

pom.xml:
<dependency>
    <groupId>com.google.cloud.dataflow</groupId>
    <artifactId>google-cloud-dataflow-java-sdk-all</artifactId>
    <version>2.4.0</version>
    </dependency>
<dependency>
    <groupId>com.google.cloud</groupId>
    <artifactId>google-cloud-pubsub</artifactId>
    <version>0.8.0</version>
</dependency>

Need help here to find the correct jar for missing classes. Appreciate your help. Jar should be stable one not alpha/beta version.
pom.xml:
com.google.cloud.dataflow
google云数据流java sdk全部
2.4.0
com.google.cloud
谷歌云pubsub
0.8.0
这里需要帮助来找到丢失类的正确jar。谢谢你的帮助。Jar应该是稳定的,而不是alpha/beta版本。

只有在1.31.0版发布之前处于beta版的客户端库的更高版本中才定义了
ProjectSubscriptionName
MessageReceiver
。较新的客户端库旨在使处理高吞吐量和低延迟变得更容易。
MessageReceiver
界面首次出现在0.9.0-alpha版本中。
ProjectSubscriptionName
类首次出现在0.36.0-beta版。

ProjectSubscriptionName和
MessageReceiver
仅在1.31.0版发布之前处于beta版的客户端库的更高版本中定义。较新的客户端库旨在使处理高吞吐量和低延迟变得更容易。
MessageReceiver
界面首次出现在0.9.0-alpha版本中。
ProjectSubscriptionName
类首次出现在0.36.0-beta版中。

Hi Kamal,
    Hi Kamal,
    Google released pubsub 1.31.0 version yesterday and pom entry below:
    <dependency>
        <groupId>com.google.cloud</groupId>
        <artifactId>google-cloud-pubsub</artifactId>
        <version>1.31.0</version>
    </dependency>

    Link: 
https://mvnrepository.com/artifact/com.google.cloud/google-cloud-pubsub/1.31.0
谷歌昨天发布了pubsub 1.31.0版本,pom条目如下: com.google.cloud 谷歌云pubsub 1.31.0 链接: https://mvnrepository.com/artifact/com.google.cloud/google-cloud-pubsub/1.31.0
你好,卡马尔,
谷歌昨天发布了pubsub 1.31.0版本,pom条目如下:
com.google.cloud
谷歌云pubsub
1.31.0
链接:
https://mvnrepository.com/artifact/com.google.cloud/google-cloud-pubsub/1.31.0