Merge "BUG 1839 - HTTP delete of non existing data"
[controller.git] / opendaylight / northbound / archetype-app-northbound / src / main / resources / archetype-resources / pom.xml
1 #set( $dollar = '$' )
2 <?xml version="1.0" encoding="UTF-8"?>
3 <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">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>commons.opendaylight</artifactId>
8     <version>1.5.0-SNAPSHOT</version>
9     <relativePath>../../commons/opendaylight</relativePath>
10   </parent>
11
12   <artifactId>${artifactId}</artifactId>
13
14   <groupId>${groupId}</groupId>
15   <packaging>bundle</packaging>
16
17   <build>
18     <plugins>
19       <plugin>
20         <groupId>org.apache.felix</groupId>
21         <artifactId>maven-bundle-plugin</artifactId>
22         <version>${bundle.plugin.version}</version>
23         <extensions>true</extensions>
24         <configuration>
25           <instructions>
26             <Export-Package></Export-Package>
27             <Import-Package>org.opendaylight.controller.northbound.commons,
28               com.sun.jersey.spi.container.servlet,
29               com.fasterxml.jackson.annotation,
30               javax.ws.rs,
31               javax.ws.rs.core,
32               javax.xml.bind,
33               javax.xml.bind.annotation,
34               org.slf4j,
35               org.apache.catalina.filters,
36               com.fasterxml.jackson.jaxrs.base,
37               com.fasterxml.jackson.jaxrs.json,
38               !org.codehaus.enunciate.jaxrs</Import-Package>
39             <Web-ContextPath>/northbound/${artifactId}</Web-ContextPath>
40             <Jaxrs-Resources>,${dollar}{classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
41           </instructions>
42           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
43         </configuration>
44       </plugin>
45     </plugins>
46   </build>
47
48   <version>${version}</version>
49   <dependencies>
50     <dependency>
51       <groupId>org.codehaus.enunciate</groupId>
52       <artifactId>enunciate-core-annotations</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.controller</groupId>
56       <artifactId>commons.northbound</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>junit</groupId>
60       <artifactId>junit</artifactId>
61     </dependency>
62   </dependencies>
63 </project>