Merge "BUG 1839 - HTTP delete of non existing data"
[controller.git] / opendaylight / northbound / networkconfiguration / neutron / 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>org.codehaus.enunciate</groupId>
20       <artifactId>enunciate-core-annotations</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.eclipse.persistence</groupId>
24       <artifactId>org.eclipse.persistence.antlr</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.eclipse.persistence</groupId>
28       <artifactId>org.eclipse.persistence.core</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>commons.northbound</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>containermanager</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>networkconfig.neutron</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>sal</artifactId>
49     </dependency>
50   </dependencies>
51
52   <build>
53     <plugins>
54       <plugin>
55         <groupId>org.apache.felix</groupId>
56         <artifactId>maven-bundle-plugin</artifactId>
57         <extensions>true</extensions>
58         <configuration>
59           <instructions>
60             <Import-Package>org.opendaylight.controller.sal.utils,
61                             org.opendaylight.controller.containermanager,
62                             org.opendaylight.controller.northbound.commons,
63                             org.opendaylight.controller.northbound.commons.exception,
64                             org.opendaylight.controller.northbound.commons.utils,
65                             org.opendaylight.controller.networkconfig.neutron,
66                             org.eclipse.persistence.jaxb.rs,
67                             com.sun.jersey.spi.container.servlet,
68                             javax.ws.rs,
69                             javax.ws.rs.ext,
70                             javax.ws.rs.core,
71                             javax.xml.bind.annotation,
72                             javax.xml.bind,
73                             org.slf4j,
74                             !org.codehaus.enunciate.jaxrs</Import-Package>
75             <Web-ContextPath>/controller/nb/v2/neutron</Web-ContextPath>
76           </instructions>
77           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
78         </configuration>
79       </plugin>
80       <plugin>
81         <groupId>org.codehaus.enunciate</groupId>
82         <artifactId>maven-enunciate-plugin</artifactId>
83       </plugin>
84     </plugins>
85   </build>
86   <scm>
87     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
88     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
89     <tag>HEAD</tag>
90     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
91   </scm>
92
93   <distributionManagement>
94     <!-- OpenDayLight Released artifact -->
95     <repository>
96       <id>opendaylight-release</id>
97       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
98     </repository>
99     <!-- OpenDayLight Snapshot artifact -->
100     <snapshotRepository>
101       <id>opendaylight-snapshot</id>
102       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
103     </snapshotRepository>
104     <!-- Site deployment -->
105     <site>
106       <id>website</id>
107       <url>${sitedeploy}</url>
108     </site>
109   </distributionManagement>
110 </project>