b2fcc57447ba7f41cdaaa1a6211f26fa5d56a4dd
[controller.git] / opendaylight / md-sal / 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.controller</groupId>
6     <artifactId>sal-parent</artifactId>
7     <version>1.3.0-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-config</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>org.opendaylight.controller</groupId>
22       <artifactId>sal-binding-util</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.controller</groupId>
26       <artifactId>sal-broker-impl</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller</groupId>
30       <artifactId>sal-core-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>sal-remote</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.yangtools</groupId>
38       <artifactId>restconf-client-api</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.yangtools</groupId>
42       <artifactId>restconf-client-impl</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.slf4j</groupId>
46       <artifactId>slf4j-api</artifactId>
47     </dependency>
48   </dependencies>
49   <build>
50     <plugins>
51       <plugin>
52         <groupId>org.apache.felix</groupId>
53         <artifactId>maven-bundle-plugin</artifactId>
54         <extensions>true</extensions>
55         <configuration>
56           <instructions>
57             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
58             <Import-Package>*</Import-Package>
59           </instructions>
60         </configuration>
61       </plugin>
62     </plugins>
63   </build>
64   <scm>
65     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
66     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
67     <tag>HEAD</tag>
68     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
69   </scm>
70 </project>