4a1142bb1813784fd7b5108a807ac9fde26bc6c5
[controller.git] / opendaylight / northbound / topology / 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>topology.northbound</artifactId>
12   <version>0.4.2-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>junit</groupId>
17       <artifactId>junit</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.codehaus.enunciate</groupId>
21       <artifactId>enunciate-core-annotations</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>commons.northbound</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>containermanager</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>sal</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>topologymanager</artifactId>
38     </dependency>
39   </dependencies>
40
41   <build>
42     <plugins>
43       <plugin>
44         <groupId>org.apache.felix</groupId>
45         <artifactId>maven-bundle-plugin</artifactId>
46         <extensions>true</extensions>
47         <configuration>
48           <instructions>
49             <Export-Package></Export-Package>
50             <Import-Package>org.opendaylight.controller.containermanager,
51               org.opendaylight.controller.northbound.commons,
52               org.opendaylight.controller.northbound.commons.exception,
53               org.opendaylight.controller.northbound.commons.utils,
54               org.opendaylight.controller.sal.core,
55               org.opendaylight.controller.sal.packet,
56               org.opendaylight.controller.sal.authorization,
57               org.opendaylight.controller.sal.packet.address,
58               org.opendaylight.controller.sal.utils,
59               org.opendaylight.controller.switchmanager,
60               org.opendaylight.controller.usermanager,
61               org.opendaylight.controller.topologymanager,
62               com.sun.jersey.spi.container.servlet,
63               com.fasterxml.jackson.annotation,
64               javax.ws.rs,
65               javax.ws.rs.core,
66               javax.xml.bind,
67               javax.xml.bind.annotation,
68               org.slf4j,
69               org.apache.catalina.filters,
70               com.fasterxml.jackson.jaxrs.base,
71               com.fasterxml.jackson.jaxrs.json,
72               !org.codehaus.enunciate.jaxrs</Import-Package>
73             <Web-ContextPath>/controller/nb/v2/topology</Web-ContextPath>
74             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
75           </instructions>
76           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
77         </configuration>
78       </plugin>
79       <plugin>
80         <groupId>org.codehaus.enunciate</groupId>
81         <artifactId>maven-enunciate-plugin</artifactId>
82         <dependencies>
83           <dependency>
84             <groupId>org.opendaylight.controller</groupId>
85             <artifactId>sal</artifactId>
86             <version>${sal.version}</version>
87           </dependency>
88         </dependencies>
89       </plugin>
90     </plugins>
91   </build>
92   <scm>
93     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
94     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
95     <tag>HEAD</tag>
96     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
97   </scm>
98 </project>