BUG 1001 Failing test - RestGetOperationTest.getStreamsTest
[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.opendaylight.controller</groupId>
32       <artifactId>sal-remote</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.yangtools</groupId>
36       <artifactId>yang-data-impl</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.yangtools</groupId>
40       <artifactId>yang-model-util</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.yangtools</groupId>
44       <artifactId>yang-parser-impl</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.slf4j</groupId>
48       <artifactId>slf4j-api</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.jboss.resteasy</groupId>
52       <artifactId>jaxrs-api</artifactId>
53       <version>3.0.4.Final</version>
54       <scope>provided</scope>
55     </dependency>
56     <dependency>
57       <groupId>ch.qos.logback</groupId>
58       <artifactId>logback-classic</artifactId>
59       <scope>test</scope>
60     </dependency>
61
62     <!-- Testing Dependencies -->
63     <dependency>
64       <groupId>junit</groupId>
65       <artifactId>junit</artifactId>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.glassfish.jersey.test-framework.providers</groupId>
70       <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
71       <version>2.4</version>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.mockito</groupId>
76       <artifactId>mockito-all</artifactId>
77       <scope>test</scope>
78     </dependency>
79   </dependencies>
80
81   <build>
82     <plugins>
83       <plugin>
84         <groupId>org.apache.felix</groupId>
85         <artifactId>maven-bundle-plugin</artifactId>
86         <extensions>true</extensions>
87         <configuration>
88           <instructions>
89             <Bundle-Name>MD SAL Restconf Connector</Bundle-Name>
90             <Private-Package>org.opendaylight.controller.sal.rest.*,
91               org.opendaylight.controller.sal.restconf.impl,</Private-Package>
92             <Import-Package>*,
93             com.sun.jersey.spi.container.servlet</Import-Package>
94             <Bundle-Activator>org.opendaylight.controller.sal.rest.impl.RestconfProvider</Bundle-Activator>
95             <Web-ContextPath>/restconf</Web-ContextPath>
96           </instructions>
97         </configuration>
98       </plugin>
99     </plugins>
100   </build>
101   <scm>
102     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
103     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
104     <tag>HEAD</tag>
105     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
106   </scm>
107 </project>