Fixed typo in node-inventory model.
[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.slf4j</groupId>
32       <artifactId>slf4j-api</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.jboss.resteasy</groupId>
36       <artifactId>jaxrs-api</artifactId>
37       <version>3.0.4.Final</version>
38       <scope>provided</scope>
39     </dependency>
40     
41     <!-- Testing Dependencies -->
42     <dependency>
43       <groupId>junit</groupId>
44       <artifactId>junit</artifactId>
45       <scope>test</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.mockito</groupId>
49       <artifactId>mockito-all</artifactId>
50       <scope>test</scope>
51     </dependency>
52     <dependency>
53       <groupId>ch.qos.logback</groupId>
54       <artifactId>logback-classic</artifactId>
55       <version>1.0.9</version>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.yangtools</groupId>
60       <artifactId>yang-parser-impl</artifactId>
61       <version>${yang.version}</version>
62       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.yangtools</groupId>
66       <artifactId>yang-data-impl</artifactId>
67       <version>${yang.version}</version>
68       <scope>test</scope>
69     </dependency>
70   </dependencies>
71
72   <build>
73     <plugins>
74       <plugin>
75         <groupId>org.eclipse.xtend</groupId>
76         <artifactId>xtend-maven-plugin</artifactId>
77       </plugin>
78       <plugin>
79         <groupId>org.apache.felix</groupId>
80         <artifactId>maven-bundle-plugin</artifactId>
81         <extensions>true</extensions>
82         <configuration>
83           <instructions>
84             <Bundle-Name>MD SAL Restconf Connector</Bundle-Name>
85             <Private-Package>
86               org.opendaylight.controller.sal.rest.*,
87               org.opendaylight.controller.sal.restconf.impl,
88               org.eclipse.xtend2.lib,
89               org.eclipse.xtend.lib,
90               org.eclipse.xtext.xbase.*
91             </Private-Package>
92           </instructions>
93         </configuration>
94       </plugin>
95     </plugins>
96   </build>
97   <packaging>bundle</packaging>
98 </project>