2

我想将 wso2/gmail 包导入我的芭蕾舞演员项目。

import wso2/gmail;

但是当我尝试将包导入到 my 时,出现以下错误。

ballerina pull wso2/gmail

your ballerina version does not support for package: wso2/gmail:*. following versions are supported: 0.9.6

我的芭蕾舞演员版本是 0.981.1 但是根据https://central.ballerina.io/wso2/gmailhttps://github.com/wso2-ballerina/package-gmail ballerina 0.982.0 也受支持。有没有办法导入与芭蕾舞女演员 0.981.0 兼容的最新 wso2/gmail 0.9.7。

ps:我的要求是使用 gmail-connector 并发送电子邮件通知。随意建议是否有更好的方法。

4

1 回答 1

3

ballerina pull wso2/gmail尝试从中央提取最新的包。wso2/gmail0.9.7 版本仅与 0.982.0 ballerina 发行版兼容。

由于您有 0.981.0 芭蕾舞演员版本,您可以使用ballerina pull wso2/gmail:0.9.6.

其他选择是升级到 ballerina 0.982.0 版本,该版本目前是 RC 版本 - https://ballerina.io/downloads/ ( https://product-dist.ballerina.io/dev/0.982.0-rc1 /ballerina-platform-0.982.0-rc1.zip )

您不能将 wso2/gmail 0.9.7 与芭蕾舞演员 0.981.0 一起使用。

于 2018-09-28T10:15:47.733 回答