Changing NB API authentication/authorization to use Tomcat Valve.
[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,
53               javax.xml.bind.annotation,
54               org.slf4j,
55               !org.codehaus.enunciate.jaxrs
56             </Import-Package>
57             <Web-ContextPath>/controller/nb/v2/topology</Web-ContextPath>
58           </instructions>
59           </configuration>
60       </plugin>
61     </plugins>
62   </build>
63   <dependencies>
64     <dependency>
65       <groupId>org.codehaus.enunciate</groupId>
66       <artifactId>enunciate-core-annotations</artifactId>
67       <version>${enunciate.version}</version>
68     </dependency>
69         <dependency>
70           <groupId>org.opendaylight.controller</groupId>
71           <artifactId>containermanager</artifactId>
72           <version>0.4.0-SNAPSHOT</version>
73         </dependency>
74         <dependency>
75           <groupId>org.opendaylight.controller</groupId>
76           <artifactId>commons.northbound</artifactId>
77           <version>0.4.0-SNAPSHOT</version>
78         </dependency>
79         <dependency>
80           <groupId>org.opendaylight.controller</groupId>
81           <artifactId>sal</artifactId>
82           <version>0.4.0-SNAPSHOT</version>
83         </dependency>
84         <dependency>
85           <groupId>org.opendaylight.controller</groupId>
86           <artifactId>topologymanager</artifactId>
87           <version>0.4.0-SNAPSHOT</version>
88         </dependency>
89     <dependency>
90       <groupId>org.opendaylight.controller.thirdparty</groupId>
91       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
92       <version>1.17-SNAPSHOT</version>
93     </dependency>
94   </dependencies>
95 </project>