Reworked pom files
[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       <version>0.5.1-SNAPSHOT</version>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>sal</artifactId>
75       <version>0.5.1-SNAPSHOT</version>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>usermanager</artifactId>
80       <version>0.4.1-SNAPSHOT</version>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>bundlescanner</artifactId>
85       <version>0.4.1-SNAPSHOT</version>
86     </dependency>
87     <dependency>
88       <groupId>com.sun.jersey</groupId>
89       <artifactId>jersey-core</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>org.codehaus.jackson</groupId>
93       <artifactId>jackson-core-asl</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>org.codehaus.jackson</groupId>
97       <artifactId>jackson-mapper-asl</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>org.codehaus.jackson</groupId>
101       <artifactId>jackson-jaxrs</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>junit</groupId>
105       <artifactId>junit</artifactId>
106     </dependency>
107     <!-- Jersey for JAXRS -->
108     <dependency>
109       <groupId>com.sun.jersey</groupId>
110       <artifactId>jersey-core</artifactId>
111       <version>${jersey.version}</version>
112     </dependency>
113     <dependency>
114       <groupId>com.sun.jersey</groupId>
115       <artifactId>jersey-server</artifactId>
116       <version>${jersey.version}</version>
117     </dependency>
118     <dependency>
119       <groupId>com.sun.jersey</groupId>
120       <artifactId>jersey-client</artifactId>
121       <version>${jersey.version}</version>
122     </dependency>
123     <dependency>
124       <groupId>com.sun.jersey</groupId>
125       <artifactId>jersey-json</artifactId>
126       <version>${jersey.version}</version>
127     </dependency>
128   </dependencies>
129 </project>