Merge changes Ib1fb74f6,I532fff58
[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"
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>topology.northbound</artifactId>
19   <version>0.4.1-SNAPSHOT</version>
20   <packaging>bundle</packaging>
21
22   <build>
23     <plugins>
24       <plugin>
25         <groupId>org.codehaus.enunciate</groupId>
26         <artifactId>maven-enunciate-plugin</artifactId>
27         <version>${enunciate.version}</version>
28         <dependencies>
29           <dependency>
30             <groupId>org.opendaylight.controller</groupId>
31             <artifactId>sal</artifactId>
32             <version>${sal.version}</version>
33           </dependency>
34         </dependencies>
35       </plugin>
36       <plugin>
37         <groupId>org.apache.felix</groupId>
38         <artifactId>maven-bundle-plugin</artifactId>
39         <version>${bundle.plugin.version}</version>
40         <extensions>true</extensions>
41         <configuration>
42           <instructions>
43             <Export-Package>
44             </Export-Package>
45             <Import-Package>
46               org.opendaylight.controller.containermanager,
47               org.opendaylight.controller.northbound.commons,
48               org.opendaylight.controller.northbound.commons.exception,
49               org.opendaylight.controller.northbound.commons.utils,
50               org.opendaylight.controller.sal.core,
51               org.opendaylight.controller.sal.packet,
52               org.opendaylight.controller.sal.authorization,
53               org.opendaylight.controller.sal.packet.address,
54               org.opendaylight.controller.sal.utils,
55               org.opendaylight.controller.switchmanager,
56               org.opendaylight.controller.usermanager,
57               org.opendaylight.controller.topologymanager,
58               com.sun.jersey.spi.container.servlet,
59               org.codehaus.jackson.annotate,
60               javax.ws.rs,
61               javax.ws.rs.core,
62               javax.xml.bind,
63               javax.xml.bind.annotation,
64               org.slf4j,
65               org.apache.catalina.filters,
66               org.codehaus.jackson.jaxrs,
67               !org.codehaus.enunciate.jaxrs
68             </Import-Package>
69             <Web-ContextPath>/controller/nb/v2/topology</Web-ContextPath>
70             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
71           </instructions>
72           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
73         </configuration>
74       </plugin>
75     </plugins>
76   </build>
77   <dependencies>
78     <dependency>
79       <groupId>org.codehaus.enunciate</groupId>
80       <artifactId>enunciate-core-annotations</artifactId>
81       <version>${enunciate.version}</version>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.controller</groupId>
85       <artifactId>containermanager</artifactId>
86       <version>${containermanager.version}</version>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.controller</groupId>
90       <artifactId>commons.northbound</artifactId>
91       <version>${commons.northbound.version}</version>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.controller</groupId>
95       <artifactId>sal</artifactId>
96       <version>${sal.version}</version>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.controller</groupId>
100       <artifactId>topologymanager</artifactId>
101       <version>${topologymanager.version}</version>
102     </dependency>
103     <dependency>
104       <groupId>junit</groupId>
105       <artifactId>junit</artifactId>
106     </dependency>
107   </dependencies>
108 </project>