Consistent URL Scheme for Northbound and Web UI
[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.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>topology.northbound</artifactId>
13   <version>0.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <build>
17      <plugins>
18       <plugin>
19         <groupId>org.codehaus.enunciate</groupId>
20         <artifactId>maven-enunciate-plugin</artifactId>
21         <version>${enunciate.version}</version>
22         <dependencies>
23           <dependency>
24             <groupId>org.opendaylight.controller</groupId>
25             <artifactId>sal</artifactId>
26             <version>0.4.0-SNAPSHOT</version>
27           </dependency>
28         </dependencies>
29       </plugin>
30       <plugin>
31           <groupId>org.apache.felix</groupId>
32           <artifactId>maven-bundle-plugin</artifactId>
33           <version>2.3.6</version>
34           <extensions>true</extensions>
35           <configuration>
36           <instructions>
37             <Export-Package>
38             </Export-Package>
39             <Import-Package>
40               org.opendaylight.controller.containermanager,
41               org.opendaylight.controller.northbound.commons,
42               org.opendaylight.controller.northbound.commons.exception,
43               org.opendaylight.controller.sal.core,
44               org.opendaylight.controller.sal.packet,
45               org.opendaylight.controller.sal.packet.address,
46               org.opendaylight.controller.sal.utils,
47               org.opendaylight.controller.switchmanager,
48               org.opendaylight.controller.topologymanager,
49               com.sun.jersey.spi.container.servlet,
50               javax.ws.rs,
51               javax.ws.rs.core,
52               javax.xml.bind.annotation,
53               org.slf4j,
54               com.sun.jersey.spi.spring.container.servlet,
55               org.springframework.web.context,
56               org.springframework.web,
57               org.springframework.web.servlet,
58               org.springframework.web.filter,
59               org.springframework.security.config,
60               org.springframework.security.web.authentication,
61               org.springframework.security.web.authentication.www,
62               !org.codehaus.enunciate.jaxrs
63             </Import-Package>
64             <Web-ContextPath>/controller/nb/v2/topology</Web-ContextPath>
65           </instructions>
66           </configuration>
67       </plugin>
68     </plugins>
69   </build>
70   <dependencies>
71     <dependency>
72       <groupId>org.codehaus.enunciate</groupId>
73       <artifactId>enunciate-core-annotations</artifactId>
74       <version>${enunciate.version}</version>
75     </dependency>
76         <dependency>
77           <groupId>org.opendaylight.controller</groupId>
78           <artifactId>containermanager</artifactId>
79           <version>0.4.0-SNAPSHOT</version>
80         </dependency>
81         <dependency>
82           <groupId>org.opendaylight.controller</groupId>
83           <artifactId>commons.northbound</artifactId>
84           <version>0.4.0-SNAPSHOT</version>
85         </dependency>
86         <dependency>
87           <groupId>org.opendaylight.controller</groupId>
88           <artifactId>sal</artifactId>
89           <version>0.4.0-SNAPSHOT</version>
90         </dependency>
91         <dependency>
92           <groupId>org.opendaylight.controller</groupId>
93           <artifactId>topologymanager</artifactId>
94           <version>0.4.0-SNAPSHOT</version>
95         </dependency>
96     <dependency>
97       <groupId>org.opendaylight.controller.thirdparty</groupId>
98       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
99       <version>1.17-SNAPSHOT</version>
100     </dependency>
101   </dependencies>
102 </project>