Bug 716: Errors on controller shutdown
[controller.git] / opendaylight / md-sal / sal-rest-connector / 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.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-rest-connector</artifactId>
10   <packaging>bundle</packaging>
11
12   <dependencies>
13     <dependency>
14       <groupId>${project.groupId}</groupId>
15       <artifactId>sal-connector-api</artifactId>
16     </dependency>
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>com.google.code.gson</groupId>
24       <artifactId>gson</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>io.netty</groupId>
28       <artifactId>netty-codec-http</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.apache.commons</groupId>
32       <artifactId>commons-lang3</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>sal-remote</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.yangtools</groupId>
40       <artifactId>yang-data-impl</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.yangtools</groupId>
44       <artifactId>yang-model-util</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.yangtools</groupId>
48       <artifactId>yang-parser-impl</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.slf4j</groupId>
52       <artifactId>slf4j-api</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.jboss.resteasy</groupId>
56       <artifactId>jaxrs-api</artifactId>
57       <version>3.0.4.Final</version>
58       <scope>provided</scope>
59     </dependency>
60     <dependency>
61       <groupId>ch.qos.logback</groupId>
62       <artifactId>logback-classic</artifactId>
63       <scope>test</scope>
64     </dependency>
65
66     <!-- Testing Dependencies -->
67     <dependency>
68       <groupId>junit</groupId>
69       <artifactId>junit</artifactId>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.glassfish.jersey.test-framework.providers</groupId>
74       <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
75       <version>2.4</version>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.mockito</groupId>
80       <artifactId>mockito-all</artifactId>
81       <scope>test</scope>
82     </dependency>
83   </dependencies>
84
85   <build>
86     <plugins>
87       <plugin>
88         <groupId>org.apache.felix</groupId>
89         <artifactId>maven-bundle-plugin</artifactId>
90         <extensions>true</extensions>
91         <configuration>
92           <instructions>
93             <Bundle-Name>MD SAL Restconf Connector</Bundle-Name>
94             <Private-Package>org.opendaylight.controller.sal.rest.*,
95               org.opendaylight.controller.sal.restconf.rpc.*,
96               org.opendaylight.controller.sal.restconf.impl,</Private-Package>
97             <Import-Package>*,
98             com.sun.jersey.spi.container.servlet</Import-Package>
99             <Bundle-Activator>org.opendaylight.controller.sal.rest.impl.RestconfProvider</Bundle-Activator>
100             <Web-ContextPath>/restconf</Web-ContextPath>
101           </instructions>
102         </configuration>
103       </plugin>
104     </plugins>
105   </build>
106   <scm>
107     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
108     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
109     <tag>HEAD</tag>
110     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
111   </scm>
112 </project>