Merge changes I4fddcded,I3228fff6
[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.persistence.jaxb.rs,
57               com.sun.jersey.spi.container.servlet,
58               javax.ws.rs,
59               javax.ws.rs.ext,
60               javax.ws.rs.core,
61               javax.xml.bind.annotation,
62               javax.xml.bind,
63               org.slf4j,
64               org.osgi.framework,
65               !org.codehaus.enunciate.jaxrs,*</Import-Package>
66             <Web-ContextPath>/controller/nb/v2/neutron</Web-ContextPath>
67           </instructions>
68           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
69         </configuration>
70       </plugin>
71     </plugins>
72   </build>
73   <scm>
74     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
75     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
76     <tag>HEAD</tag>
77     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
78   </scm>
79
80   <distributionManagement>
81     <!-- OpenDayLight Released artifact -->
82     <repository>
83       <id>opendaylight-release</id>
84       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
85     </repository>
86     <!-- OpenDayLight Snapshot artifact -->
87     <snapshotRepository>
88       <id>opendaylight-snapshot</id>
89       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
90     </snapshotRepository>
91     <!-- Site deployment -->
92     <site>
93       <id>website</id>
94       <url>${sitedeploy}</url>
95     </site>
96   </distributionManagement>
97 </project>