afd2f2e47f967454d13549d88b1394211642d359
[controller.git] / opendaylight / northbound / commons / 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"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>commons.opendaylight</artifactId>
8     <version>1.4.1-SNAPSHOT</version>
9     <relativePath>../../commons/opendaylight</relativePath>
10   </parent>
11   <scm>
12     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
15     <tag>HEAD</tag>
16   </scm>
17
18   <artifactId>commons.northbound</artifactId>
19   <version>0.4.1-SNAPSHOT</version>
20   <packaging>bundle</packaging>
21
22   <build>
23     <plugins>
24       <plugin>
25         <groupId>org.apache.felix</groupId>
26         <artifactId>maven-bundle-plugin</artifactId>
27         <version>${bundle.plugin.version}</version>
28         <extensions>true</extensions>
29         <configuration>
30           <instructions>
31             <Export-Package>
32               org.opendaylight.controller.northbound.commons.exception,
33               org.opendaylight.controller.northbound.commons.types,
34               org.opendaylight.controller.northbound.commons.utils,
35               org.opendaylight.controller.northbound.commons
36             </Export-Package>
37             <Import-Package>
38               javax.ws.rs,
39               javax.ws.rs.ext,
40               javax.ws.rs.core,
41               javax.xml.bind,
42               javax.xml.bind.annotation,
43               org.objectweb.asm,
44               org.opendaylight.controller.sal.utils,
45               org.opendaylight.controller.sal.core,
46               org.opendaylight.controller.sal.authorization,
47               org.opendaylight.controller.containermanager,
48               org.opendaylight.controller.usermanager,
49               org.opendaylight.controller.switchmanager,
50               org.opendaylight.controller.northbound.bundlescanner,
51               org.osgi.framework,
52               org.osgi.service.packageadmin,
53               org.osgi.util.tracker,
54               javax.servlet.http,
55               com.fasterxml.jackson.core,
56               com.fasterxml.jackson.databind,
57               com.fasterxml.jackson.jaxrs.base,
58               com.fasterxml.jackson.jaxrs.json,
59               org.slf4j
60             </Import-Package>
61           </instructions>
62           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
63         </configuration>
64       </plugin>
65     </plugins>
66   </build>
67   <dependencies>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>containermanager</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>switchmanager</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>sal</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>usermanager</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.controller</groupId>
86       <artifactId>bundlescanner</artifactId>
87     </dependency>
88
89      <dependency>
90       <groupId>com.fasterxml.jackson.core</groupId>
91       <artifactId>jackson-databind</artifactId>
92     </dependency>
93
94     <dependency>
95        <groupId>com.fasterxml.jackson.jaxrs</groupId>
96        <artifactId>jackson-jaxrs-json-provider</artifactId>
97     </dependency>
98
99       <dependency>
100          <groupId>com.fasterxml.jackson.jaxrs</groupId>
101          <artifactId>jackson-jaxrs-base</artifactId>
102       </dependency>
103
104     <dependency>
105       <groupId>junit</groupId>
106       <artifactId>junit</artifactId>
107     </dependency>
108     <!-- Jersey for JAXRS -->
109     <dependency>
110       <groupId>com.sun.jersey</groupId>
111       <artifactId>jersey-core</artifactId>
112     </dependency>
113     <dependency>
114       <groupId>com.sun.jersey</groupId>
115       <artifactId>jersey-server</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>com.sun.jersey</groupId>
119       <artifactId>jersey-client</artifactId>
120     </dependency>
121   </dependencies>
122 </project>