1a450bf3c5423387727115ab3c63bde06f9c3c23
[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               org.codehaus.jackson,
56               org.codehaus.jackson.jaxrs,
57               org.codehaus.jackson.map,
58               org.slf4j
59             </Import-Package>
60           </instructions>
61           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
62         </configuration>
63       </plugin>
64     </plugins>
65   </build>
66   <dependencies>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>switchmanager</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>sal</artifactId>
74       <version>0.5.1-SNAPSHOT</version>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>usermanager</artifactId>
79       <version>0.4.1-SNAPSHOT</version>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.controller</groupId>
83       <artifactId>bundlescanner</artifactId>
84       <version>0.4.1-SNAPSHOT</version>
85     </dependency>
86     <dependency>
87       <groupId>com.sun.jersey</groupId>
88       <artifactId>jersey-core</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.codehaus.jackson</groupId>
92       <artifactId>jackson-core-asl</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.codehaus.jackson</groupId>
96       <artifactId>jackson-mapper-asl</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.codehaus.jackson</groupId>
100       <artifactId>jackson-jaxrs</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>junit</groupId>
104       <artifactId>junit</artifactId>
105     </dependency>
106     <!-- Jersey for JAXRS -->
107     <dependency>
108       <groupId>com.sun.jersey</groupId>
109       <artifactId>jersey-core</artifactId>
110       <version>${jersey.version}</version>
111     </dependency>
112     <dependency>
113       <groupId>com.sun.jersey</groupId>
114       <artifactId>jersey-server</artifactId>
115       <version>${jersey.version}</version>
116     </dependency>
117     <dependency>
118       <groupId>com.sun.jersey</groupId>
119       <artifactId>jersey-client</artifactId>
120       <version>${jersey.version}</version>
121     </dependency>
122     <dependency>
123       <groupId>com.sun.jersey</groupId>
124       <artifactId>jersey-json</artifactId>
125       <version>${jersey.version}</version>
126     </dependency>
127   </dependencies>
128 </project>