958644bb72d35957ea6dacf463c6ddee99437203
[netconf.git] / restconf / sal-restconf-broker / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.netconf</groupId>
6     <artifactId>restconf-parent</artifactId>
7     <version>1.6.3-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-restconf-broker</artifactId>
10   <packaging>bundle</packaging>
11   <dependencies>
12     <dependency>
13       <groupId>org.opendaylight.controller</groupId>
14       <artifactId>sal-binding-api</artifactId>
15     </dependency>
16     <dependency>
17       <groupId>org.opendaylight.controller</groupId>
18       <artifactId>sal-binding-util</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>org.opendaylight.controller</groupId>
22       <artifactId>sal-broker-impl</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.controller</groupId>
26       <artifactId>sal-core-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.netconf</groupId>
30       <artifactId>sal-rest-connector</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.yangtools</groupId>
34       <artifactId>restconf-client-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.yangtools</groupId>
38       <artifactId>restconf-client-impl</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.slf4j</groupId>
42       <artifactId>slf4j-api</artifactId>
43     </dependency>
44   </dependencies>
45   <build>
46     <plugins>
47       <plugin>
48         <groupId>org.apache.felix</groupId>
49         <artifactId>maven-bundle-plugin</artifactId>
50         <extensions>true</extensions>
51         <configuration>
52           <instructions>
53             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
54             <Import-Package>*</Import-Package>
55           </instructions>
56         </configuration>
57       </plugin>
58     </plugins>
59   </build>
60   <scm>
61     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
62     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
63     <tag>HEAD</tag>
64     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
65   </scm>
66 </project>