<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/maven-v4_0_0.xsd">

    <parent>
        <groupId>org.wso2.carbon</groupId>
        <artifactId>carbon-parent</artifactId>
        <version>2.0.2</version>
    </parent>


    <modelVersion>4.0.0</modelVersion>
    <groupId>org.wso2.carbon</groupId>
    <artifactId>eventing-component</artifactId>
    <packaging>pom</packaging>
    <name>eventing</name>
    <description>
        This is a Carbon bundle that represent the eventing module.
    </description>
    <url>http://wso2.org</url>

    <profiles>
        <profile>
            <id>product-greg</id>

            <activation>
                <property>
                    <name>product</name>
                    <value>greg</value>
                </property>
            </activation>

            <modules>
                <module>org.wso2.carbon.eventing</module>
                <module>org.wso2.carbon.eventing.core</module>
                <module>org.wso2.carbon.eventing.impl</module>
            </modules>
        </profile>
        <profile>
            <id>default</id>

            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>

            <modules>
                <module>org.wso2.carbon.eventing.core</module>
                <module>org.wso2.carbon.eventing</module>
                <module>org.wso2.carbon.eventing.ui</module>
                <module>org.wso2.carbon.eventing.eventsource</module>
                <module>org.wso2.carbon.eventing.eventsource.ui</module>
                <module>org.wso2.carbon.eventing.impl</module>
            </modules>
        </profile>
    </profiles>

</project>
