org.opennms.oce.features.graph.rest-1.0.0-20190308.073253-3.pom

Checksums

MD5 81bc16534e3abb5dcc3070056903fd4b
SHA1 7553c48e1956753567fc7258cbf023dfe1499f10
SHA256 b26811942ed70fbfde24e1992ccf90df3267fcea083a2986235264225c66742e
SHA512 08805ba421630eaeeaf91d645d2d2d6eb45f0cff3d9e611b34bd4396b01a9c324843b4accd20dd7f8bfb7923dd7365547bf4e258b530745cd2b987936fbd158d

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.rest</artifactId>
    <name>OCE :: Features :: Graph :: REST</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>
                        <Karaf-Commands>*</Karaf-Commands>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>org.opennms.oce.features.graph</groupId>
            <artifactId>org.opennms.oce.features.graph.common</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.osgi</groupId>
            <artifactId>org.osgi.core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.cxf</groupId>
            <artifactId>cxf-rt-frontend-jaxrs</artifactId>
            <version>${cxf.version}</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
            <version>${jackson.version}</version>
        </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.engine</groupId>
            <artifactId>org.opennms.oce.engine.cluster</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

</project>