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