Merge "Increase timeout for waiting for broker service in sal-binding-it."
[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       <version>2.2.4</version>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.yangtools</groupId>
55       <artifactId>yang-parser-impl</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>io.netty</groupId>
59       <artifactId>netty-codec-http</artifactId>
60       <version>4.0.10.Final</version>
61     </dependency>
62     
63     <!-- Testing Dependencies -->
64     <dependency>
65       <groupId>junit</groupId>
66       <artifactId>junit</artifactId>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.mockito</groupId>
71       <artifactId>mockito-all</artifactId>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>ch.qos.logback</groupId>
76       <artifactId>logback-classic</artifactId>
77       <version>1.0.9</version>
78       <scope>test</scope>
79     </dependency>
80     <dependency>
81       <groupId>org.glassfish.jersey.test-framework.providers</groupId>
82       <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
83       <version>2.4</version>
84       <scope>test</scope>
85     </dependency>
86   </dependencies>
87
88   <build>
89     <plugins>
90       <plugin>
91         <groupId>org.eclipse.xtend</groupId>
92         <artifactId>xtend-maven-plugin</artifactId>
93       </plugin>
94       <plugin>
95         <groupId>org.apache.felix</groupId>
96         <artifactId>maven-bundle-plugin</artifactId>
97         <extensions>true</extensions>
98         <configuration>
99           <instructions>
100             <Bundle-Name>MD SAL Restconf Connector</Bundle-Name>
101             <Private-Package>
102               org.opendaylight.controller.sal.rest.*,
103               org.opendaylight.controller.sal.restconf.impl,
104               org.eclipse.xtend2.lib,
105               org.eclipse.xtend.lib,
106               org.eclipse.xtext.xbase.*,
107             </Private-Package>
108             <Import-Package>
109             *,
110             com.sun.jersey.spi.container.servlet
111             </Import-Package>
112             <Bundle-Activator>org.opendaylight.controller.sal.rest.impl.RestconfProvider</Bundle-Activator>
113             <Web-ContextPath>/restconf</Web-ContextPath>
114           </instructions>
115         </configuration>
116       </plugin>
117     </plugins>
118   </build>
119   <packaging>bundle</packaging>
120 </project>