summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/resources/elasticsearch.yml
AgeCommit message (Expand)AuthorFilesLines
2017-06-09[SDC-29] catalog 1707 rebase commit.Michael Lando1-5/+11
2017-02-19Initial OpenECOMP SDC commitMichael Lando1-0/+393
a> 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
<?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>
        <groupId>org.openecomp.sdc</groupId>
        <artifactId>healthcheck-rest</artifactId>
        <version>1.3.0-SNAPSHOT</version>
    </parent>

    <artifactId>healthcheck-rest-services</artifactId>
    <version>1.3.0-SNAPSHOT</version>
    <!--packaging>pom</packaging-->

    <dependencies>


        <dependency>
            <groupId>javax.ws.rs</groupId>
            <artifactId>javax.ws.rs-api</artifactId>
            <version>${ws.rs.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>${spring.framework.version}</version>
        </dependency>
        <dependency>
            <groupId>javax.inject</groupId>
            <artifactId>javax.inject</artifactId>
            <version>1</version>
        </dependency>
        <dependency>
            <groupId>org.openecomp.sdc</groupId>
            <artifactId>openecomp-sdc-healthcheck-manager</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
             <groupId>org.openecomp.sdc</groupId>
            <artifactId>healthcheck-rest-types</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.openecomp.sdc</groupId>
            <artifactId>openecomp-sdc-common-rest</artifactId>
            <version>${project.version}</version>
        </dependency>
         <!-- CXF -->
        <dependency>
            <groupId>org.apache.cxf</groupId>
            <artifactId>cxf-rt-frontend-jaxrs</artifactId>
            <version>${cxf.version}</version>
        </dependency>

    </dependencies>


</project>