<?xml version="1.0"?>
<!-- vi: set et smarttab sw=4 tabstop=4: -->
<!--
 Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.

 This program and the accompanying materials are made available under the
 terms of the Eclipse Public License v1.0 which accompanies this distribution,
 and is available at http://www.eclipse.org/legal/epl-v10.html
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.opendaylight.yangtools</groupId>
        <artifactId>restconf-parent</artifactId>
        <version>0.7.0-Lithium</version>
    </parent>

  <artifactId>restconf-client-impl</artifactId>
  <packaging>bundle</packaging>

  <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
      <dependency>
          <groupId>org.opendaylight.yangtools</groupId>
          <artifactId>restconf-client-api</artifactId>
      </dependency>
      <dependency>
          <groupId>org.opendaylight.yangtools</groupId>
          <artifactId>yang-binding</artifactId>
      </dependency>
      <dependency>
          <groupId>org.opendaylight.yangtools</groupId>
          <artifactId>binding-data-codec</artifactId>
      </dependency>
      <dependency>
          <groupId>org.opendaylight.yangtools</groupId>
          <artifactId>restconf-util</artifactId>
      </dependency>
      <dependency>
          <groupId>org.opendaylight.yangtools</groupId>
          <artifactId>restconf-jaxrs-api</artifactId>
      </dependency>
<!--       <dependency> -->
<!--           <groupId>org.opendaylight.yangtools</groupId> -->
<!--           <artifactId>restconf-test-service</artifactId> -->
<!--       </dependency> -->
      <dependency>
            <groupId>org.glassfish.jersey.ext</groupId>
            <artifactId>jersey-proxy-client</artifactId>
        </dependency>
      <dependency>
          <groupId>org.glassfish.jersey.core</groupId>
          <artifactId>jersey-client</artifactId>
      </dependency>
      <dependency>
          <groupId>javax.ws.rs</groupId>
          <artifactId>javax.ws.rs-api</artifactId>
      </dependency>
      <dependency>
          <groupId>javax.ws.rs</groupId>
          <artifactId>jsr311-api</artifactId>
      </dependency>
        <dependency>
            <groupId>org.opendaylight.yangtools</groupId>
            <artifactId>yang-model-api</artifactId>
        </dependency>
      <dependency>
          <groupId>org.opendaylight.yangtools</groupId>
          <artifactId>yang-model-util</artifactId>
      </dependency>
      <dependency>
          <groupId>org.opendaylight.yangtools</groupId>
          <artifactId>yang-data-util</artifactId>
      </dependency>
        <dependency>
            <groupId>org.opendaylight.yangtools</groupId>
            <artifactId>concepts</artifactId>
        </dependency>
        <dependency>
            <groupId>org.opendaylight.yangtools</groupId>
            <artifactId>restconf-common</artifactId>
        </dependency>
      <dependency>
          <groupId>org.opendaylight.yangtools</groupId>
          <artifactId>websocket-client</artifactId>
      </dependency>
      <dependency>
          <groupId>org.opendaylight.yangtools</groupId>
          <artifactId>binding-generator-impl</artifactId>
      </dependency>
  </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <extensions>true</extensions>
                <configuration>
                    <instructions>
                        <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
                        <Import-Package>!com.google.protobuf.*</Import-Package>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
