org.opennms.oce.features.graph.common-1.0.0-20190307.195617-1.pom

Checksums

MD5 04cb7404a378f122d82e923eea1d2d5b
SHA1 66dfd1121c895a4544b43e0109e5cdf6930a7cb7
SHA256 1737ba9039d250238f5291116733ebe9e0f94a42953e0f27729b00cc0507684f
SHA512 ccc6d53860bdaa0308cfd2cd3ed6eec5b5518457f0076a98a3b48f0935b4166221c76e6f209cbc86e7239330cc06a22809c4da01fb3d127e9840a789197dcda1

POM

<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.opennms.oce.features</groupId>
        <artifactId>graph</artifactId>
        <version>1.0.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.opennms.oce.features.graph</groupId>
    <artifactId>org.opennms.oce.features.graph.common</artifactId>
    <name>OCE :: Features :: Graph :: Common</name>
    <packaging>bundle</packaging>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <extensions>true</extensions>
                <configuration>
                    <instructions>
                        <Bundle-RequiredExecutionEnvironment>JavaSE-1.8</Bundle-RequiredExecutionEnvironment>
                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                        <Bundle-Version>${project.version}</Bundle-Version>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>org.opennms.oce.features.graph</groupId>
            <artifactId>org.opennms.oce.features.graph.api</artifactId>
        </dependency>
        <dependency>
            <groupId>org.opennms.oce.features.graph</groupId>
            <artifactId>org.opennms.oce.features.graph.graphml</artifactId>
        </dependency>
        <dependency>
            <groupId>org.osgi</groupId>
            <artifactId>org.osgi.core</artifactId>
        </dependency>

        <!-- Test -->
        <dependency>
            <groupId>org.opennms.oce</groupId>
            <artifactId>oce-test-api</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-library</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.opennms.oce.datasource</groupId>
            <artifactId>org.opennms.oce.datasource.common</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

</project>