<?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">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <artifactId>fabric-project</artifactId>
        <groupId>io.fabric8</groupId>
        <version>1.1.0.Beta3</version>
    </parent>

    <artifactId>fabric-api</artifactId>
    <packaging>bundle</packaging>

    <name>Fabric8 :: API</name>

    <properties>
        <fuse.osgi.import>
            org.codehaus.jackson.annotate.*,
            org.osgi.framework, 
            org.osgi.util.tracker,
            org.slf4j,
            javax.xml.parsers,
            org.w3c.dom,
            org.xml.sax
        </fuse.osgi.import>
        <fuse.osgi.export>
            io.fabric8.api*;version=${project.version}
        </fuse.osgi.export>
    </properties>

    <dependencies>
        <!-- Provided Dependencies -->
        <dependency>
            <groupId>org.codehaus.jackson</groupId>
            <artifactId>jackson-core-asl</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.osgi</groupId>
            <artifactId>org.osgi.core</artifactId>
            <scope>provided</scope>
        </dependency>
        
        <!-- Test Dependencies -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>
