Added CorsFilter to enable secure cross site scripting
[controller.git] / opendaylight / northbound / networkconfiguration / bridgedomain / 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   <artifactId>networkconfig.bridgedomain.northbound</artifactId>
12   <version>0.0.1-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <build>
15     <plugins>
16       <plugin>
17         <groupId>org.codehaus.enunciate</groupId>
18         <artifactId>maven-enunciate-plugin</artifactId>
19         <version>${enunciate.version}</version>
20         <dependencies>
21           <dependency>
22             <groupId>org.opendaylight.controller</groupId>
23             <artifactId>sal</artifactId>
24             <version>0.5.0-SNAPSHOT</version>
25           </dependency>
26         </dependencies>
27       </plugin>
28       <plugin>
29         <groupId>org.apache.felix</groupId>
30         <artifactId>maven-bundle-plugin</artifactId>
31         <version>2.3.6</version>
32         <extensions>true</extensions>
33         <configuration>
34           <instructions>
35             <Export-Package>
36             </Export-Package>
37             <Import-Package>
38               org.opendaylight.controller.sal.core,
39               org.opendaylight.controller.sal.utils,
40               org.opendaylight.controller.sal.networkconfig.bridgedomain,
41               org.opendaylight.controller.containermanager,
42               org.opendaylight.controller.usermanager,
43               com.sun.jersey.spi.container.servlet,
44               org.opendaylight.controller.northbound.commons,
45               org.opendaylight.controller.northbound.commons.exception,
46               org.opendaylight.controller.northbound.commons.utils,
47               org.opendaylight.controller.sal.authorization,
48               org.opendaylight.controller.connectionmanager,
49               org.opendaylight.controller.sal.connection,
50               org.slf4j,
51               javax.ws.rs,
52               javax.ws.rs.core,
53               javax.xml.bind.annotation,
54               javax.xml.bind,
55               org.apache.catalina.filters,
56               !org.codehaus.enunciate.jaxrs
57             </Import-Package>
58             <Export-Package>
59             </Export-Package>
60             <Web-ContextPath>/controller/nb/v2/networkconfig/bridgedomain</Web-ContextPath>
61           </instructions>
62           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
63         </configuration>
64       </plugin>
65     </plugins>
66   </build>
67   <dependencies>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>sal</artifactId>
71       <version>0.5.0-SNAPSHOT</version>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.controller</groupId>
75       <artifactId>sal.connection</artifactId>
76       <version>0.1.0-SNAPSHOT</version>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.controller</groupId>
80       <artifactId>sal.networkconfiguration</artifactId>
81       <version>0.0.1-SNAPSHOT</version>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.controller</groupId>
85       <artifactId>connectionmanager</artifactId>
86       <version>0.1.0-SNAPSHOT</version>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.controller</groupId>
90       <artifactId>containermanager</artifactId>
91       <version>0.4.0-SNAPSHOT</version>
92     </dependency>
93     <dependency>
94       <groupId>org.codehaus.enunciate</groupId>
95       <artifactId>enunciate-core-annotations</artifactId>
96       <version>${enunciate.version}</version>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.controller</groupId>
100       <artifactId>commons.northbound</artifactId>
101       <version>0.4.0-SNAPSHOT</version>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.controller.thirdparty</groupId>
105       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
106       <version>1.17-SNAPSHOT</version>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.controller.thirdparty</groupId>
110       <artifactId>org.apache.catalina.filters.CorsFilter</artifactId>
111       <version>7.0.42-SNAPSHOT</version>
112     </dependency>
113   </dependencies>
114 </project>