Bug 3533: Fix for CorsFilter error
[neutron.git] / northbound-api / 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.neutron</groupId>
6     <artifactId>project-neutron-parent</artifactId>
7     <version>0.5.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.neutron</groupId>
12   <artifactId>northbound-api</artifactId>
13   <version>0.5.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <dependencies>
16     <dependency>
17       <groupId>com.sun.jersey</groupId>
18       <artifactId>jersey-core</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>com.sun.jersey</groupId>
22       <artifactId>jersey-server</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.controller.thirdparty</groupId>
26       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.codehaus.enunciate</groupId>
30       <artifactId>enunciate-core-annotations</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.eclipse.persistence</groupId>
34       <artifactId>org.eclipse.persistence.moxy</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.neutron</groupId>
38       <artifactId>neutron-spi</artifactId>
39       <version>${project.version}</version>
40     </dependency>
41     <dependency>
42       <groupId>org.osgi</groupId>
43       <artifactId>org.osgi.core</artifactId>
44     </dependency>
45   </dependencies>
46
47   <build>
48     <plugins>
49       <plugin>
50         <groupId>org.apache.felix</groupId>
51         <artifactId>maven-bundle-plugin</artifactId>
52         <extensions>true</extensions>
53         <configuration>
54           <instructions>
55             <Import-Package>
56               org.eclipse.jetty.servlets,
57               org.eclipse.persistence.jaxb.rs,
58               com.sun.jersey.spi.container.servlet,
59               javax.ws.rs,
60               javax.ws.rs.ext,
61               javax.ws.rs.core,
62               javax.xml.bind.annotation,
63               javax.xml.bind,
64               org.slf4j,
65               org.osgi.framework,
66               !org.codehaus.enunciate.jaxrs,*</Import-Package>
67             <Web-ContextPath>/controller/nb/v2/neutron</Web-ContextPath>
68           </instructions>
69           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
70         </configuration>
71       </plugin>
72     </plugins>
73   </build>
74   <scm>
75     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
76     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
77     <tag>HEAD</tag>
78     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
79   </scm>
80
81   <distributionManagement>
82     <!-- OpenDayLight Released artifact -->
83     <repository>
84       <id>opendaylight-release</id>
85       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
86     </repository>
87     <!-- OpenDayLight Snapshot artifact -->
88     <snapshotRepository>
89       <id>opendaylight-snapshot</id>
90       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
91     </snapshotRepository>
92     <!-- Site deployment -->
93     <site>
94       <id>website</id>
95       <url>${sitedeploy}</url>
96     </site>
97   </distributionManagement>
98 </project>