Merge "BUG 3057 - notify added event source by topics created before"
[controller.git] / opendaylight / adsal / northbound / switchmanager / 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>adsal-enunciate-parent</artifactId>
7     <version>1.6.0-SNAPSHOT</version>
8     <relativePath>../../adsal-enunciate-parent</relativePath>
9   </parent>
10   <artifactId>switchmanager.northbound</artifactId>
11   <version>0.6.0-SNAPSHOT</version>
12   <packaging>bundle</packaging>
13   <dependencies>
14     <dependency>
15       <groupId>junit</groupId>
16       <artifactId>junit</artifactId>
17     </dependency>
18     <dependency>
19       <groupId>org.codehaus.enunciate</groupId>
20       <artifactId>enunciate-core-annotations</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.opendaylight.controller</groupId>
24       <artifactId>commons.northbound</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>containermanager</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>sal</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>switchmanager</artifactId>
37     </dependency>
38   </dependencies>
39
40   <build>
41     <plugins>
42
43       <plugin>
44         <groupId>org.apache.felix</groupId>
45         <artifactId>maven-bundle-plugin</artifactId>
46         <extensions>true</extensions>
47         <configuration>
48           <instructions>
49             <Import-Package>org.opendaylight.controller.sal.core,
50               org.opendaylight.controller.sal.utils,
51               org.opendaylight.controller.containermanager,
52               org.opendaylight.controller.switchmanager,
53               org.opendaylight.controller.usermanager,
54               org.apache.commons.lang3.tuple,
55               org.apache.commons.logging,
56               com.sun.jersey.spi.container.servlet,
57               org.opendaylight.controller.northbound.commons,
58               org.opendaylight.controller.northbound.commons.exception,
59               org.opendaylight.controller.northbound.commons.utils,
60               org.opendaylight.controller.sal.authorization,
61               org.opendaylight.controller.northbound.commons.query,
62               javax.ws.rs,
63               javax.ws.rs.ext,
64               javax.ws.rs.core,
65               javax.xml.bind.annotation,
66               javax.xml.bind,
67               org.slf4j,
68               org.apache.catalina.filters,
69               com.fasterxml.jackson.annotation,
70               com.fasterxml.jackson.databind,
71               !org.codehaus.enunciate.jaxrs</Import-Package>
72             <Web-ContextPath>/controller/nb/v2/switchmanager</Web-ContextPath>
73             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
74           </instructions>
75           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
76         </configuration>
77       </plugin>
78     </plugins>
79   </build>
80   <scm>
81     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
82     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
83     <tag>HEAD</tag>
84     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
85   </scm>
86 </project>