<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">

    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.rhq</groupId>
        <artifactId>rhq-common-parent</artifactId>
        <version>4.7.0</version>
    </parent>

    <artifactId>rhq-filetemplate-bundle-common</artifactId>
    <packaging>jar</packaging>

    <name>RHQ File Template Bundle Plugins Common Library</name>
    <description>A library with the code common to the agent and server plugins for File Template Bundles</description>

    <dependencies>

        <dependency>
            <groupId>gnu-getopt</groupId>
            <artifactId>getopt</artifactId>
            <!-- NOTE: The version is defined in the root POM's dependencyManagement section. -->
        </dependency>

        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>rhq-core-native-system</artifactId>
            <version>${project.version}</version>
            <scope>provided</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.hyperic</groupId>
                    <artifactId>sigar</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.hyperic</groupId>
                    <artifactId>sigar-dist</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>
</project>