用于 WSO2-IS 服务存根的 Maven 存储库



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

存根本身随 WSO2 身份服务器一起提供,位于目录 /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工件,但到目前为止,我只发现了非常过时的工件。

这些在 wso2 maven 存储库中公开可用。例如,如果你想要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

最新更新