Download org.wso2.carbon.event.processor.manager.core-5.0.6.jar file

Introduction

You can download org.wso2.carbon.event.processor.manager.core-5.0.6.jar in this page.

License

Open Source License

Type List

org.wso2.carbon.event.processor.manager.core-5.0.6.jar file has the following types.

Data.thrift
EventProcessorManagementService.thrift
Exception.thrift
META-INF/DEPENDENCIES
META-INF/LICENSE
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/maven/org.wso2.carbon.analytics-common/org.wso2.carbon.event.processor.manager.core/pom.properties
META-INF/maven/org.wso2.carbon.analytics-common/org.wso2.carbon.event.processor.manager.core/pom.xml
OSGI-INF/metatype/metatype.xml
OSGI-INF/scr-plugin/scrinfo.xml
OSGI-INF/serviceComponents.xml
org.wso2.carbon.event.processor.manager.core.EventManagementService.class
org.wso2.carbon.event.processor.manager.core.EventManagementUtil.class
org.wso2.carbon.event.processor.manager.core.EventProcessorManagementService.class
org.wso2.carbon.event.processor.manager.core.EventPublisherManagementService.class
org.wso2.carbon.event.processor.manager.core.EventReceiverManagementService.class
org.wso2.carbon.event.processor.manager.core.EventSync.class
org.wso2.carbon.event.processor.manager.core.Manager.class
org.wso2.carbon.event.processor.manager.core.config.DistributedConfiguration.class
org.wso2.carbon.event.processor.manager.core.config.HAConfiguration.class
org.wso2.carbon.event.processor.manager.core.config.ManagementModeInfo.class
org.wso2.carbon.event.processor.manager.core.config.Mode.class
org.wso2.carbon.event.processor.manager.core.config.PersistenceConfiguration.class
org.wso2.carbon.event.processor.manager.core.exception.EventManagementException.class
org.wso2.carbon.event.processor.manager.core.exception.ManagementConfigurationException.class
org.wso2.carbon.event.processor.manager.core.internal.CarbonEventManagementService.class
org.wso2.carbon.event.processor.manager.core.internal.EventHandler.class
org.wso2.carbon.event.processor.manager.core.internal.HAManager.class
org.wso2.carbon.event.processor.manager.core.internal.ManagementServiceClient.class
org.wso2.carbon.event.processor.manager.core.internal.PersistenceManager.class
org.wso2.carbon.event.processor.manager.core.internal.StormReceiverCoordinator.class
org.wso2.carbon.event.processor.manager.core.internal.ds.EventManagementServiceDS.class
org.wso2.carbon.event.processor.manager.core.internal.ds.EventManagementServiceValueHolder.class
org.wso2.carbon.event.processor.manager.core.internal.thrift.ManagementServiceClientThriftImpl.class
org.wso2.carbon.event.processor.manager.core.internal.thrift.ManagementServiceImpl.class
org.wso2.carbon.event.processor.manager.core.internal.thrift.data.SnapshotData.class
org.wso2.carbon.event.processor.manager.core.internal.thrift.exception.InternalServerException.class
org.wso2.carbon.event.processor.manager.core.internal.thrift.service.ManagementService.class
org.wso2.carbon.event.processor.manager.core.internal.util.ConfigurationConstants.class
org.wso2.carbon.event.processor.manager.core.internal.util.ManagementModeConfigurationLoader.class

Pom

org.wso2.carbon.event.processor.manager.core-5.0.6.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
  ~
  ~ WSO2 Inc. licenses this file to you under the Apache License,
  ~ Version 2.0 (the "License"); you may not use this file except
  ~ in compliance with the License.
  ~ You may obtain a copy of the License at
  ~
  ~     http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing,
  ~ software distributed under the License is distributed on an
  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  ~ KIND, either express or implied.  See the License for the
  ~ specific language governing permissions and limitations
  ~ under the License.
  -->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>event-processor-manager</artifactId>
        <groupId>org.wso2.carbon.analytics-common</groupId>
        <version>5.0.6</version>
    </parent>

    <modelVersion>4.0.0</modelVersion>
    <artifactId>org.wso2.carbon.event.processor.manager.core</artifactId>
    <packaging>bundle</packaging>
    <name>WSO2 Carbon - Event Processor Manager Core</name>
    <description>Provide management functionalities for different processing modes</description>

    <dependencies>
        <dependency>
            <groupId>org.wso2.carbon</groupId>
            <artifactId>org.wso2.carbon.utils</artifactId>
        </dependency>
        <dependency>
            <groupId>org.wso2.carbon.analytics-common</groupId>
            <artifactId>org.wso2.carbon.event.processor.manager.commons</artifactId>
        </dependency>
        <dependency>
            <groupId>libthrift.wso2</groupId>
            <artifactId>libthrift</artifactId>
        </dependency>
        <dependency>
            <groupId>org.wso2.carbon</groupId>
            <artifactId>org.wso2.carbon.core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.wso2.carbon.analytics-common</groupId>
            <artifactId>org.wso2.carbon.databridge.commons</artifactId>
        </dependency>
        <dependency>
            <groupId>org.wso2.siddhi</groupId>
            <artifactId>siddhi-core</artifactId>
        </dependency>
    </dependencies>
    <build>

        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-scr-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.3</version>
            </plugin>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <extensions>true</extensions>
                <configuration>
                    <instructions>
                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                        <Bundle-Name>${project.artifactId}</Bundle-Name>
                        <Private-Package>
                            org.wso2.carbon.event.processor.manager.core.internal.*,
                            org.wso2.carbon.event.processor.manager.core.internal,
                        </Private-Package>
                        <Export-Package>
                            !org.wso2.carbon.event.processor.manager.core.internal.*,
                            !org.wso2.carbon.event.processor.manager.core.internal,
                            org.wso2.carbon.event.processor.manager.core.*
                        </Export-Package>
                        <Import-Package>org.osgi.framework,*;resolution:=optional</Import-Package>
                        <DynamicImport-Package>*</DynamicImport-Package>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

POM Entry

<dependency>
   <groupId>org.wso2.carbon.analytics-common</groupId>
   <artifactId>org.wso2.carbon.event.processor.manager.core</artifactId>
   <version>5.0.6</version>
</dependency>

Download

If you think the following org.wso2.carbon.event.processor.manager.core-5.0.6.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download org.wso2.carbon.event.processor.manager.core-5.0.6.jar file




PreviousNext

Related