Merge "Bug 499: Added support for change listeners."
[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" 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-rest-connector</artifactId>
9   <scm>
10     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
11     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
12     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
13     <tag>HEAD</tag>
14   </scm>
15
16   <dependencies>
17     <dependency>
18       <groupId>${project.groupId}</groupId>
19       <artifactId>sal-core-api</artifactId>
20       <version>1.1-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     <dependency>
41       <groupId>org.opendaylight.yangtools</groupId>
42       <artifactId>yang-data-impl</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.yangtools</groupId>
46       <artifactId>yang-model-util</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>com.google.code.gson</groupId>
50       <artifactId>gson</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.yangtools</groupId>
54       <artifactId>yang-parser-impl</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>io.netty</groupId>
58       <artifactId>netty-codec-http</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>sal-remote</artifactId>
63      </dependency>
64     
65     <!-- Testing Dependencies -->
66     <dependency>
67       <groupId>junit</groupId>
68       <artifactId>junit</artifactId>
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>org.mockito</groupId>
73       <artifactId>mockito-all</artifactId>
74       <scope>test</scope>
75     </dependency>
76     <dependency>
77       <groupId>ch.qos.logback</groupId>
78       <artifactId>logback-classic</artifactId>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.glassfish.jersey.test-framework.providers</groupId>
83       <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
84       <version>2.4</version>
85       <scope>test</scope>
86     </dependency>
87   </dependencies>
88
89   <build>
90     <plugins>
91       <plugin>
92         <groupId>org.eclipse.xtend</groupId>
93         <artifactId>xtend-maven-plugin</artifactId>
94       </plugin>
95       <plugin>
96         <groupId>org.apache.felix</groupId>
97         <artifactId>maven-bundle-plugin</artifactId>
98         <extensions>true</extensions>
99         <configuration>
100           <instructions>
101             <Bundle-Name>MD SAL Restconf Connector</Bundle-Name>
102             <Private-Package>
103               org.opendaylight.controller.sal.rest.*,
104               org.opendaylight.controller.sal.restconf.impl,
105               org.eclipse.xtend2.lib,
106               org.eclipse.xtend.lib,
107               org.eclipse.xtext.xbase.*,
108             </Private-Package>
109             <Import-Package>
110             *,
111             com.sun.jersey.spi.container.servlet
112             </Import-Package>
113             <Bundle-Activator>org.opendaylight.controller.sal.rest.impl.RestconfProvider</Bundle-Activator>
114             <Web-ContextPath>/restconf</Web-ContextPath>
115           </instructions>
116         </configuration>
117       </plugin>
118     </plugins>
119   </build>
120   <packaging>bundle</packaging>
121 </project>