<?xml version="1.0" encoding="utf-8"?>
<!--
 ~ Copyright (c) WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
 ~
 ~ Licensed 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/maven-v4_0_0.xsd">

    <parent>
        <groupId>org.wso2.carbon</groupId>
        <artifactId>logging-mgt-feature</artifactId>
        <version>4.0.0</version>
	<relativePath>../../pom.xml</relativePath>
    </parent>

    <modelVersion>4.0.0</modelVersion>
    <artifactId>org.wso2.carbon.logging.mgt.server.feature</artifactId>
    <packaging>pom</packaging>
    <version>4.0.2</version>
    <name>WSO2 Carbon - Logging Management Core Feature</name>
    <url>http://wso2.org</url>
    <description>This feature contains the core bundles required for Back-end Logging Management functionality</description>

    <dependencies>
        <dependency>
            <groupId>org.wso2.carbon</groupId>
            <artifactId>org.wso2.carbon.logging.service</artifactId>
	    <version>${carbon.platform.patch.version.402}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.ws.wso2</groupId>
            <artifactId>spring.framework</artifactId>
        </dependency>


       <dependency>
            <groupId>com.google.guava.wso2</groupId>
            <artifactId>guava</artifactId>
        </dependency>
        <dependency>
            <groupId>libthrift.wso2</groupId>
            <artifactId>libthrift</artifactId>
            <version>${libthrift.version}</version>
        </dependency>
        <dependency>
            <groupId>org.perf4j.wso2</groupId>
            <artifactId>perf4j</artifactId>
            <version>${perf4j.version}</version>
        </dependency>
        <dependency>
            <groupId>org.cliffc.high_scale_lib.wso2</groupId>
            <artifactId>high-scale-lib</artifactId>
            <version>${highscale.version}</version>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>${slf4j.version}</version>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-log4j12</artifactId>
            <version>${slf4j.version}</version>
        </dependency>
        <dependency>
            <groupId>antlr.wso2</groupId>
            <artifactId>antlr</artifactId>
            <version>${antlr.version}</version>
        </dependency>
        <dependency>
            <groupId>org.antlr.wso2</groupId>
            <artifactId>antlr-runtime</artifactId>
            <version>${antlr.version}</version>
        </dependency>
        <dependency>
            <groupId>org.wso2.carbon</groupId>
            <artifactId>org.wso2.carbon.databridge.datapublisher.feature</artifactId>
            <version>${carbon.platform.patch.version.401}</version>
            <type>zip</type>
        </dependency>
        <dependency>
            <groupId>org.apache.cassandra.wso2</groupId>
            <artifactId>apache-cassandra</artifactId>
            <version>${cassandra.version}</version>
        </dependency>
	<dependency>
	    <groupId>org.hectorclient.wso2</groupId>
    	    <artifactId>hector-core</artifactId>
	    <version>${hector-core.version.110}</version>
	</dependency>
    </dependencies>

    <build>
        <plugins>
             <plugin>
                <artifactId>maven-resources-plugin</artifactId>
                <executions>
                    <execution>
                        <id>prefilter-resources</id>
                        <phase>generate-resources</phase>
                        <goals>
                            <goal>copy-resources</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>src/main/resources</outputDirectory>
                            <resources>
                                <resource>
                                    <directory>resources</directory>
                                    <includes>
                                        <include>conf/logging-config.xml</include>
                                        <include>conf/log4j.properties</include>
                                        <include>p2.inf</include>
                                        <include>build.properties</include>
                                    </includes>
                                </resource>
                            </resources>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.wso2.maven</groupId>
                <artifactId>carbon-p2-plugin</artifactId>
                <version>${carbon.p2.plugin.version}</version>
                <executions>
                    <execution>
                        <id>4-p2-feature-generation</id>
                        <phase>package</phase>
                        <goals>
                            <goal>p2-feature-gen</goal>
                        </goals>
                        <configuration>
                            <id>org.wso2.carbon.logging.mgt.server</id>
                            <propertiesFile>../../../etc/feature.properties</propertiesFile>
			                <adviceFile>
                                <properties>
                                    <propertyDef>org.wso2.carbon.p2.category.type:server</propertyDef>
                                    <propertyDef>org.eclipse.equinox.p2.type.group:false</propertyDef>
                                </properties>
                            </adviceFile>
                            <bundles>
                                <bundleDef>org.wso2.carbon:org.wso2.carbon.logging.service</bundleDef>
                                <bundleDef>org.springframework.ws.wso2:spring.framework</bundleDef>
                                <bundleDef>org.apache.cassandra.wso2:apache-cassandra</bundleDef>
                                <bundleDef>libthrift.wso2:libthrift</bundleDef>
                                <bundleDef>org.perf4j.wso2:perf4j</bundleDef>
                                <bundleDef>org.cliffc.high_scale_lib.wso2:high-scale-lib</bundleDef>
                                <bundleDef>org.slf4j:slf4j-api</bundleDef>
                                <bundleDef>org.slf4j:slf4j-log4j12</bundleDef>
                                <bundleDef>org.hectorclient.wso2:hector-core</bundleDef>
                                <bundleDef>antlr.wso2:antlr</bundleDef>
                                <bundleDef>org.antlr.wso2:antlr-runtime</bundleDef>
                                <bundleDef>com.google.guava.wso2:guava</bundleDef>

                            </bundles>
                            <importFeatures>
				<importFeatureDef>org.wso2.carbon.databridge.datapublisher:${carbon.platform.patch.version.401}</importFeatureDef>
                                <importFeatureDef>org.wso2.carbon.core.server:${wso2carbon.version}</importFeatureDef>
                            </importFeatures>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    <properties>
        <libthrift.version>0.7.0.wso2v2</libthrift.version>
	<carbon.platform.patch.version.401>4.0.1</carbon.platform.patch.version.401>
        <carbon.platform.patch.version.402>4.0.2</carbon.platform.patch.version.402>
	<cassandra.version>1.1.3.wso2v1</cassandra.version>
	<hector-core.version.110>1.1.0.wso2v1</hector-core.version.110>
    </properties>
</project>
