0

在哪个 Maven 存储库中可以找到 WSO2 Identity Server 5.1.0 附带的各种 (SOAP) 服务存根?

存根本身随 WSO2 Identity Server 一起在目录中提供/repository/components/plugins/。例如,OAuth 存根在/repository/components/plugins/org.wso2.carbon.identity.oauth.stub_5.0.7.jar

jar 文件包含一个 pom 文件,该文件使用 Maven 坐标标识库。对于上面的例子,这些坐标是

<groupId>org.wso2.carbon.identity</groupId>
<artifactId>carbon-service-stubs</artifactId>
<version>5.0.7</version>

我很想使用公共存储库中的 Maven 工件,但到目前为止,我只发现了非常过时的工件。

4

1 回答 1

1

这些在 wso2 maven repo 中公开可用。例如,如果您想要 org.wso2.carbon.identity.entitlement.stub,您可以从http://maven.wso2.org/nexus/content/repositories/releases/org/wso2/carbon/identity/org.wso2获取.carbon.identity.entitlement.stub/5.0.7/

你可以在这里找到所有存根 http://maven.wso2.org/nexus/content/repositories/releases

于 2016-02-12T18:17:40.333 回答