Updated RESTCONF implementation
[controller.git] / opendaylight / md-sal / sal-rest-connector / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2   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.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-rest-connector</artifactId>
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   </scm>
15
16   <dependencies>
17     <dependency>
18       <groupId>${project.groupId}</groupId>
19       <artifactId>sal-core-api</artifactId>
20       <version>1.0-SNAPSHOT</version>
21     </dependency>
22     <dependency>
23       <groupId>${project.groupId}</groupId>
24       <artifactId>sal-connector-api</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.eclipse.xtend</groupId>
28       <artifactId>org.eclipse.xtend.lib</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.jboss.resteasy</groupId>
32       <artifactId>jaxrs-api</artifactId>
33       <version>3.0.4.Final</version>
34       <scope>provided</scope>
35     </dependency>
36   </dependencies>
37
38   <build>
39     <plugins>
40       <plugin>
41         <groupId>org.eclipse.xtend</groupId>
42         <artifactId>xtend-maven-plugin</artifactId>
43       </plugin>
44       <plugin>
45         <groupId>org.apache.felix</groupId>
46         <artifactId>maven-bundle-plugin</artifactId>
47         <extensions>true</extensions>
48         <configuration>
49           <instructions>
50             <Bundle-Name>MD SAL Restconf Connector</Bundle-Name>
51             <Private-Package>
52               org.opendaylight.controller.sal.rest.*,
53               org.opendaylight.controller.sal.restconf.impl,
54               org.eclipse.xtend2.lib,
55               org.eclipse.xtend.lib,
56               org.eclipse.xtext.xbase.*
57             </Private-Package>
58           </instructions>
59         </configuration>
60       </plugin>
61     </plugins>
62   </build>
63   <packaging>bundle</packaging>
64 </project>