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