[maven-release-plugin] prepare for next development iteration
[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.1-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
14     <tag>HEAD</tag>
15   </scm>
16
17   <artifactId>commons.northbound</artifactId>
18   <version>0.4.1-SNAPSHOT</version>
19   <packaging>bundle</packaging>
20
21   <build>
22     <plugins>
23       <plugin>
24         <groupId>org.apache.felix</groupId>
25         <artifactId>maven-bundle-plugin</artifactId>
26         <version>${bundle.plugin.version}</version>
27         <extensions>true</extensions>
28         <configuration>
29           <instructions>
30             <Export-Package>
31               org.opendaylight.controller.northbound.commons.exception,
32               org.opendaylight.controller.northbound.commons.types,
33               org.opendaylight.controller.northbound.commons.utils,
34               org.opendaylight.controller.northbound.commons
35             </Export-Package>
36             <Import-Package>
37               javax.ws.rs,
38               javax.ws.rs.ext,
39               javax.ws.rs.core,
40               javax.xml.bind,
41               javax.xml.bind.annotation,
42               org.objectweb.asm,
43               org.opendaylight.controller.sal.utils,
44               org.opendaylight.controller.sal.core,
45               org.opendaylight.controller.sal.authorization,
46               org.opendaylight.controller.containermanager,
47               org.opendaylight.controller.usermanager,
48               org.opendaylight.controller.switchmanager,
49               org.opendaylight.controller.northbound.bundlescanner,
50               org.osgi.framework,
51               org.osgi.service.packageadmin,
52               org.osgi.util.tracker,
53               javax.servlet.http,
54               org.codehaus.jackson,
55               org.codehaus.jackson.jaxrs,
56               org.codehaus.jackson.map,
57               org.slf4j
58             </Import-Package>
59           </instructions>
60           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
61         </configuration>
62       </plugin>
63     </plugins>
64   </build>
65   <dependencies>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>switchmanager</artifactId>
69       <version>0.5.1-SNAPSHOT</version>
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   </dependencies>
87 </project>