Merge "BUG 484 - XmlReader improve readability"
[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     </dependency>
21     <dependency>
22       <groupId>com.google.code.gson</groupId>
23       <artifactId>gson</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>io.netty</groupId>
27       <artifactId>netty-codec-http</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.apache.commons</groupId>
31       <artifactId>commons-lang3</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>sal-remote</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.yangtools</groupId>
39       <artifactId>yang-data-impl</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.yangtools</groupId>
43       <artifactId>yang-model-util</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.yangtools</groupId>
47       <artifactId>yang-parser-impl</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.yangtools.model</groupId>
51       <artifactId>ietf-restconf</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.yangtools.model</groupId>
55       <artifactId>ietf-yang-types-20130715</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.slf4j</groupId>
59       <artifactId>slf4j-api</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.jboss.resteasy</groupId>
63       <artifactId>jaxrs-api</artifactId>
64       <scope>provided</scope>
65     </dependency>
66     <dependency>
67       <groupId>ch.qos.logback</groupId>
68       <artifactId>logback-classic</artifactId>
69       <scope>test</scope>
70     </dependency>
71
72     <!-- Testing Dependencies -->
73     <dependency>
74       <groupId>junit</groupId>
75       <artifactId>junit</artifactId>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.glassfish.jersey.test-framework.providers</groupId>
80       <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
81       <scope>test</scope>
82     </dependency>
83     <dependency>
84       <groupId>org.mockito</groupId>
85       <artifactId>mockito-all</artifactId>
86       <scope>test</scope>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.controller</groupId>
90       <artifactId>sal-common-util</artifactId>
91       <scope>test</scope>
92     </dependency>
93   </dependencies>
94
95   <build>
96     <plugins>
97       <plugin>
98         <groupId>org.apache.felix</groupId>
99         <artifactId>maven-bundle-plugin</artifactId>
100         <extensions>true</extensions>
101         <configuration>
102           <instructions>
103             <Bundle-Name>MD SAL Restconf Connector</Bundle-Name>
104             <Private-Package>org.opendaylight.controller.sal.rest.*,
105               org.opendaylight.controller.sal.restconf.rpc.*,
106               org.opendaylight.controller.sal.restconf.impl,</Private-Package>
107             <Import-Package>*,
108             com.sun.jersey.spi.container.servlet</Import-Package>
109             <Bundle-Activator>org.opendaylight.controller.sal.rest.impl.RestconfProvider</Bundle-Activator>
110             <Web-ContextPath>/restconf</Web-ContextPath>
111           </instructions>
112         </configuration>
113       </plugin>
114     </plugins>
115   </build>
116   <scm>
117     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
118     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
119     <tag>HEAD</tag>
120     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
121   </scm>
122 </project>