AbstractHandler 的 Maven 依赖项
Maven dependency for AbstractHandler
我正在尝试为 WSO2 API 管理器编写自定义身份验证处理程序,但为此加载正确的 类 时遇到问题。
是否有可以添加到我的 pom 的 Maven 依赖项,以及相应的存储库,以获得所有必要的依赖项?
谢谢
您可以按如下方式定义突触和 api 网关依赖项。但请注意,版本取决于各自的产品版本。要检查依赖项的正确版本,请检查您的 <product>/repository/component/plugins
并跟踪相关的 jar。
<dependency>
<groupId>org.apache.synapse</groupId>
<artifactId>synapse-core</artifactId>
<version>2.1.2-wso2v4</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.apimgt.gateway</artifactId>
<version>1.2.2</version>
</dependency>
回购可以是
<repository>
<id>wso2-maven2-repository</id>
<name>WSO2 Maven2 Repository</name>
<url>http://dist.wso2.org/maven2</url>
</repository>
<repository>
<id>wso2.releases</id>
<name>WSO2 internal Repository</name>
<url>http://maven.wso2.org/nexus/content/repositories/releases/</url>
</repository>
<repository>
<id>wso2-nexus-repository</id>
<name>WSO2 nexus Repository</name>
<url>http://maven.wso2.org/nexus/content/groups/wso2-public/</url>
</repository>
我正在尝试为 WSO2 API 管理器编写自定义身份验证处理程序,但为此加载正确的 类 时遇到问题。 是否有可以添加到我的 pom 的 Maven 依赖项,以及相应的存储库,以获得所有必要的依赖项? 谢谢
您可以按如下方式定义突触和 api 网关依赖项。但请注意,版本取决于各自的产品版本。要检查依赖项的正确版本,请检查您的 <product>/repository/component/plugins
并跟踪相关的 jar。
<dependency>
<groupId>org.apache.synapse</groupId>
<artifactId>synapse-core</artifactId>
<version>2.1.2-wso2v4</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.apimgt.gateway</artifactId>
<version>1.2.2</version>
</dependency>
回购可以是
<repository>
<id>wso2-maven2-repository</id>
<name>WSO2 Maven2 Repository</name>
<url>http://dist.wso2.org/maven2</url>
</repository>
<repository>
<id>wso2.releases</id>
<name>WSO2 internal Repository</name>
<url>http://maven.wso2.org/nexus/content/repositories/releases/</url>
</repository>
<repository>
<id>wso2-nexus-repository</id>
<name>WSO2 nexus Repository</name>
<url>http://maven.wso2.org/nexus/content/groups/wso2-public/</url>
</repository>