<?xml version="1.0" encoding="UTF-8"?>
<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>
        <groupId>org.wso2.carbon</groupId>
        <artifactId>admin-console</artifactId>
        <version>3.2.0</version>
	<relativePath>../../pom.xml</relativePath>
    </parent>

    <modelVersion>4.0.0</modelVersion>
    <groupId>org.wso2.carbon</groupId>
    <artifactId>org.wso2.carbon.adminconsole.common</artifactId>
    <packaging>bundle</packaging>
    <version>3.2.2</version>
    <name>WSO2 Carbon - Admin Console Common</name>
    <description>WSO2 Carbon - Admin Console Common Bundle</description>
    <url>http://wso2.org</url>


    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <version>1.4.0</version>
                <extensions>true</extensions>
                <configuration>
                    <instructions>
                        <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
                        <Bundle-Name>${pom.artifactId}</Bundle-Name>
                        <Bundle-Version>${pom.version}</Bundle-Version>
                        <Bundle-Description>Admin Console Common Bundle</Bundle-Description>
                        <Export-Package>
                            org.wso2.carbon.adminconsole.common.*
                        </Export-Package>
                        <Import-Package>
                            !org.wso2.carbon.adminconsole.common.*,
                            org.apache.axis2.*; version="${axis2.osgi.version}",
                            *;resolution:=optional
                        </Import-Package>
                        <DynamicImport-Package>*</DynamicImport-Package>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
