Refactor Additional header for netconf hello message.
[controller.git] / opendaylight / md-sal / sal-restconf-broker / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.controller</groupId>
5         <artifactId>sal-parent</artifactId>
6         <version>1.1-SNAPSHOT</version>
7     </parent>
8     <artifactId>sal-restconf-broker</artifactId>
9     <packaging>jar</packaging>
10     <scm>
11         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
14       <tag>HEAD</tag>
15   </scm>
16     <build>
17         <plugins>
18             <plugin>
19                 <groupId>org.apache.felix</groupId>
20                 <artifactId>maven-bundle-plugin</artifactId>
21                 <extensions>true</extensions>
22             </plugin>
23         </plugins>
24     </build>
25
26     <dependencies>
27         <dependency>
28             <groupId>org.opendaylight.controller</groupId>
29             <artifactId>sal-binding-api</artifactId>
30             <version>1.1-SNAPSHOT</version>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.controller</groupId>
34             <artifactId>sal-remote</artifactId>
35             <version>1.1-SNAPSHOT</version>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.controller</groupId>
39             <artifactId>sal-core-api</artifactId>
40             <version>1.1-SNAPSHOT</version>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.yangtools</groupId>
44             <artifactId>restconf-client-api</artifactId>
45             <version>${yangtools.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>org.slf4j</groupId>
49             <artifactId>slf4j-api</artifactId>
50         </dependency>
51     </dependencies>
52 </project>